using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.DiagnosisFunctions { public class GetCriticalResultDto { public Guid RegisterCheckId { get; set; } public char? IsCritical { get; set; } public char? IsFollowUp { get; set; } public string CriticalRangeValue { get; set; } public List ItemDetails { get; set; } = new List(); } public class GetItemCriticalResultDto { public Guid RegisterCheckId { get; set; } public Guid ItemId { get; set; } public char? IsCritical { get; set; } public char? IsFollowUp { get; set; } public string CriticalRangeValue { get; set; } } }