-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApplicationFormDto.cs
More file actions
34 lines (33 loc) · 1.5 KB
/
ApplicationFormDto.cs
File metadata and controls
34 lines (33 loc) · 1.5 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
30
31
32
33
34
using System;
using Unity.GrantManager.GrantApplications;
using Volo.Abp.Application.Dtos;
namespace Unity.GrantManager.ApplicationForms
{
public class ApplicationFormDto : EntityDto<Guid>
{
public Guid IntakeId { get; set; }
public string? ApplicationFormName { get; set; } = string.Empty;
public string? ApplicationFormDescription { get; set; }
public string? ChefsApplicationFormGuid { get; set; }
public string? ChefsFormVersionGuid { get; set; }
public string? ChefsCriteriaFormGuid { get; set; }
public string? ApiKey { get; set; }
public string? SubmissionHeaderMapping { get; set; }
public string? AvailableChefsFields { get; set; }
public string? Category { get; set; }
public int? Version { get; set; }
public string? ApiToken { get; set; }
public string? ConnectionHttpStatus { get; set; }
public DateTime? AttemptedConnectionDate { get; set; }
public bool Payable { get; set; }
public bool PreventPayment { get; set; }
public Guid AccountCodingId { get; set; }
public bool RenderFormIoToHtml { get; set; }
public Guid? ScoresheetId { get; set; }
public Guid? TenantId { get; set; }
public bool IsDirectApproval { get; set; }
public AddressType? ElectoralDistrictAddressType { get; set; }
public string? Prefix { get; set; }
public SuffixConfigType? SuffixType { get; set; }
}
}