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

12 lines
322 B
C#

namespace Fab2ApprovalSystem.Models;
public class WinEventLog {
public int SysDocumentID { get; set; }
public int IssueID { get; set; }
public string DocumentType { get; set; }
public string UserID { get; set; }
public string OperationType { get; set; }
public string Comments { get; set; }
}