initial add
This commit is contained in:
21
Fab2ApprovalSystem/Models/ApprovalLogHistory.cs
Normal file
21
Fab2ApprovalSystem/Models/ApprovalLogHistory.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user