-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuditFields.cs
27 lines (25 loc) · 972 Bytes
/
AuditFields.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace OcrProject;
public class AuditFields
{
public string? MonitoringID { get; set; }
public string? MonitoredParty { get; set; }
public string? amforiID { get; set; }
public string? ClientAddress { get; set; }
public string? MonitoringActivity { get; set; }
public string? MonitoringType { get; set; }
public string? MonitoringPartner { get; set; }
public DateTimeOffset? MonitoringStartDate { get; set; }
public DateTimeOffset? FinishedDate { get; set; }
public DateTimeOffset? SubmissionDate { get; set; }
public DateTimeOffset? ExpirationDate { get; set; }
public string? AnnouncementType { get; set; }
public string? Site { get; set; }
public string? SiteID { get; set; }
public string? OverallRating { get; set; }
public List<SectionRatings> SectionRatings { get; set; } = new();
}
public class SectionRatings
{
public string? Findings { get; set; }
public string? Rating { get; set; }
}