18 lines
617 B
C#
18 lines
617 B
C#
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
/// <summary>
|
|
/// Represents a pump element within the system, serving as a component for pumping-related functionality.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=c1af8ef -->
|
|
public class PumpElement
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? Text { get; set; }
|
|
public string? CodingSystem { get; set; }
|
|
public object? Value { get; set; }
|
|
public string? Units { get; set; }
|
|
public DateTime? Time { get; set; }
|
|
public char? Result { get; set; }
|
|
public string? ValueId { get; set; }
|
|
public string? ValueCodingSystem { get; set; }
|
|
} |