Files
adas-core/adas-core.Domain/Models/PatientDrainagesValue.cs
2026-06-26 10:29:23 +02:00

15 lines
336 B
C#

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