17 lines
344 B
C#
17 lines
344 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
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; }
|
|
} |