22 lines
641 B
C#
22 lines
641 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a value type containing data related to a patient's intravenous lines.
|
|
/// </summary>
|
|
/// <!-- aidoc-review:v1 severity=high kind=wrong_summary
|
|
/// "The class is declared as 'class', which is a reference type, but the summary describes it as a 'value type'." -->
|
|
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; }
|
|
} |