using System; namespace Fab2ApprovalSystem.Models; public class ApprovalLogHistory { public int ApprovalLogID { get; set; } public string FullName { get; set; } public string Operation { get; set; } public string SubRole { get; set; } //[Display(Name = "Operation Time")] public DateTime OperationTime { get; set; } public string Comments { get; set; } }