22 lines
545 B
C#
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; }
|
|
|
|
}
|
|
}
|