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