15 lines
336 B
C#
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; }
|
|
} |