Mike Phares b99b721458 Moved System.IO references from DMO classes to Static Helpers
Removed nugetSource from pipeline
Removed more comments
Created Static Classes for most DMO / Controller Classes
Push ConfigurationManager.AppSettings to controller
Align Tests with other Projects
2024-12-11 09:29:01 -07:00

15 lines
346 B
C#

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; }
public DateTime OperationTime { get; set; }
public string Comments { get; set; }
}