13 lines
456 B
C#
13 lines
456 B
C#
public class ReconciliationAlert
|
|
{
|
|
public Guid Id { get; set; }
|
|
public ReconciliationCheckType CheckType { get; set; }
|
|
public Guid? EncounterId { get; set; }
|
|
public Guid? PatientId { get; set; }
|
|
public string Details { get; set; } = null!;
|
|
public DateTimeOffset? ResolvedAt { get; set; }
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public Encounter? Encounter { get; set; }
|
|
public Patient? Patient { get; set; }
|
|
} |