-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSubmissionDetailsViewModel.cs
More file actions
29 lines (26 loc) · 1.17 KB
/
SubmissionDetailsViewModel.cs
File metadata and controls
29 lines (26 loc) · 1.17 KB
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
28
29
namespace EPR.RegulatorService.Frontend.Web.ViewModels.Submissions;
using Core.Enums;
using EPR.RegulatorService.Frontend.Web.ViewModels.Shared;
public class SubmissionDetailsViewModel : BaseSubmissionDetailsViewModel
{
public string OrganisationName { get; set; }
public OrganisationType OrganisationType { get; set; }
public string OrganisationReferenceNumber { get; set; }
public string FormattedTimeAndDateOfSubmission { get; set; }
public string SubmittedBy { get; set; }
public string SubmissionPeriod { get; set; }
public string AccountRole { get; set; }
public string Telephone { get; set; }
public string Email { get; set; }
public string Status { get; set; }
public string PowerBiLogin { get; set; }
public bool IsResubmission { get; set; }
public string RejectionReason { get; set; }
public bool ResubmissionRequired { get; set; }
public string PreviousRejectionComments { get; set; }
public string SubmissionFileName { get; set; }
public DateTime SubmittedDate { get; set; }
public string SubmissionBlobName { get; set; }
public Guid? ComplianceSchemeId { get; set; }
public Guid? FileId { get; set; }
}