-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathOboSite.cs
More file actions
38 lines (27 loc) · 938 Bytes
/
OboSite.cs
File metadata and controls
38 lines (27 loc) · 938 Bytes
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
35
36
37
38
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace Prime.Models
{
[Table("OboSite")]
public class OboSite : BaseAuditable, IEnrolleeNavigationProperty
{
[Key]
public int Id { get; set; }
public int EnrolleeId { get; set; }
[JsonIgnore]
public Enrollee Enrollee { get; set; }
public int CareSettingCode { get; set; }
[JsonIgnore]
public CareSetting CareSetting { get; set; }
public HealthAuthorityCode? HealthAuthorityCode { get; set; }
[JsonIgnore]
public HealthAuthority HealthAuthority { get; set; }
public string SiteName { get; set; }
public string FacilityName { get; set; }
[Required]
public string JobTitle { get; set; }
[Required]
public PhysicalAddress PhysicalAddress { get; set; }
}
}