14 lines
516 B
C#
14 lines
516 B
C#
public class ReplicaAlertThreshold
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string ObservationCode { get; set; } = null!;
|
|
public string DisplayName { get; set; } = null!;
|
|
public string Unit { get; set; } = null!;
|
|
public decimal? CriticalLow { get; set; }
|
|
public decimal? WarningLow { get; set; }
|
|
public decimal? WarningHigh { get; set; }
|
|
public decimal? CriticalHigh { get; set; }
|
|
public int? SuppressionWindowMinutes { get; set; }
|
|
public DateTimeOffset SyncedAt { get; set; }
|
|
}
|