using adas_core.Domain.Models.Observations;
namespace adas_core.Domain.Models.Responses;
///
/// Represents a response containing a collection of observations related to a box.
///
public class BoxObservationsResponse
{
public List Medication = [];
public Dictionary Observations = new();
public string? Id { get; set; }
public string? Stream { get; set; }
public bool? IsVisible { get; set; }
public bool? HasPatient { get; set; }
}