17 lines
407 B
C#
17 lines
407 B
C#
using adas_core.Domain.Models.Observations;
|
|
|
|
namespace adas_core.Domain.Models.Responses;
|
|
|
|
public class BoxObservationsResponse
|
|
{
|
|
public List<Medication> Medication = [];
|
|
|
|
public Dictionary<string, Observation> Observations = new();
|
|
public string? Id { get; set; }
|
|
|
|
public string? Stream { get; set; }
|
|
|
|
public bool? IsVisible { get; set; }
|
|
|
|
public bool? HasPatient { get; set; }
|
|
} |