Jonathan Ouellette 580e90f6a2 initial add
2022-09-27 14:10:30 -07:00

22 lines
545 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
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; }
}
}