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
12 lines
322 B
C#
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; }
|
|
|
|
} |