21 lines
554 B
C#
21 lines
554 B
C#
using adas_core.Domain.Models.Observations;
|
|
|
|
namespace adas_core.Domain.Models.Responses;
|
|
|
|
/// <summary>
|
|
/// Represents a response containing a collection of observations related to a box.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=75c632e -->
|
|
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; }
|
|
} |