8 lines
281 B
C#
8 lines
281 B
C#
public class AlertExplanation
|
|
{
|
|
public List<ScoreContributor> ScoreContributors { get; set; } = new();
|
|
public TrendContext? Trend { get; set; }
|
|
public MedicationContext? MedicationContext { get; set; }
|
|
public string NarrativeSummary { get; set; } = string.Empty;
|
|
}
|