-
Notifications
You must be signed in to change notification settings - Fork 11
/
SelfDeclaration.cs
34 lines (25 loc) · 1 KB
/
SelfDeclaration.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
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace Prime.Models
{
[Table("SelfDeclaration")]
public class SelfDeclaration : BaseAuditable, IEnrolleeNavigationProperty
{
[Key]
public int Id { get; set; }
public int EnrolleeId { get; set; }
[JsonIgnore]
public Enrollee Enrollee { get; set; }
public int SelfDeclarationTypeCode { get; set; }
public SelfDeclarationVersion SelfDeclarationVersion { get; set; }
public SelfDeclarationType SelfDeclarationType { get; set; }
public int? SelfDeclarationVersionId { get; set; }
public string SelfDeclarationDetails { get; set; }
// This is a holdover till we do a propper refactor of self delaration documents being created at the same time as self declarations
[NotMapped]
public ICollection<Guid> DocumentGuids { get; set; }
}
}