rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
@@ -3,6 +3,12 @@ using MongoDB.Bson;
namespace adas_core.Domain.Models.MongoModels;
/// <summary>
/// Represents a point-of-care location or entity within a healthcare delivery context.
/// </summary>
/// <remarks>
/// This class serves as a data model for capturing information related to a specific point where care is administered to patients.
/// </remarks>
public class PointOfCare
{
public ObjectId Id { get; set; }
@@ -30,6 +36,9 @@ public class PointOfCare
#endregion
}
/// <summary>
/// Represents the configuration settings for a point-of-care system, encapsulating the parameters and options required to manage its behavior.
/// </summary>
public class PointOfCareConfiguration
{
public List<ObjectId>? BeaconIdList { get; set; } = [];