namespace adas_core.Domain.Models; /// /// Represents a value associated with a patient's drainage information. /// public class PatientDrainagesValue { public string? Type { get; set; } public string? Location { get; set; } public int? Volume { get; set; } public int? Height { get; set; } }