Files

12 lines
234 B
C#

namespace adas_core.Domain.Models;
public class PatientDrainagesValue
{
public string? Type { get; set; }
public string? Location { get; set; }
public int? Volume { get; set; }
public int? Height { get; set; }
}