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

20 lines
459 B
C#

namespace adas_core.Domain.Models;
/// <summary>
/// Represents a value type containing data related to a patient's intravenous lines.
/// </summary>
public class PatientIntravenousLinesValue
{
public string? Type { get; set; }
public string? Duration { get; set; }
public string? Action { get; set; }
public string? Location { get; set; }
public DateTime? InsertTime { get; set; }
public DateTime? RemoveTime { get; set; }
}