Files
adas-core/adas-core.Domain/Models/Responses/BoxObservationsResponse.cs
2026-06-26 10:29:23 +02:00

20 lines
520 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>
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; }
}