Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop

This commit is contained in:
jrojas
2026-06-26 09:52:35 +02:00
commit 319fd3dfb0
746 changed files with 106610 additions and 0 deletions
@@ -0,0 +1,70 @@
using System.IdentityModel.Tokens.Jwt;
using adas_core.Domain.Models.GroupedObservations;
using adas_core.Domain.Models.Masters;
using adas_core.Domain.Models.MongoModels;
using MongoDB.Bson;
namespace adas_core.Domain.Models.SignalR;
public class MessageData
{
public bool IsDemo { get; set; } = false;
public LocaleEnum Locale { get; set; }
public string? PatientId { get; set; }
public string? Section { get; set; }
public SectionConfig? SectionConfig { get; set; }
public List<PatientLocation> Locations { get; set; } = [];
public List<ObjectId> LocationIds { get; set; } = [];
public bool SectionInfo { get; set; } = true;
public int Last { get; set; } = 2;
public bool Pumps { get; set; } = true;
public bool RecordingAlerts { get; set; } = true;
public bool Recordings { get; set; } = true;
public bool Treatments { get; set; } = true;
public bool Appointments { get; set; } = true;
public bool Diagnosis { get; set; } = true;
public bool Relay { get; set; } = true;
public bool Beacons { get; set; } = true;
public List<Recording> CurrentRecordings { get; set; } = [];
public bool Chat { get; set; } = true;
public string? ChatMessage { get; set; }
public PatientLocation? ChatMessageToLocation { get; set; }
public DateTime? ChatMessageDate { get; set; }
// PointOfCare Subscription
public PatientLocation? Location { get; set; }
public List<Field>? Fields { get; set; }
public List<Field>? Alarmfields { get; set; }
public List<GroupedField>? GroupedFields { get; set; }
public string TimeZoneId { get; set; } = "Romance Standard Time";
public JwtSecurityToken? Token { get; set; }
public string? Action { get; set; }
public string? Rol { get; set; }
public string? UserName { get; set; }
#region Display
public string? DisplayId { get; set; }
#endregion
}