14 lines
447 B
C#
14 lines
447 B
C#
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
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; }
|
|
} |