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
+9
View File
@@ -4,6 +4,9 @@ using MongoDB.Bson;
namespace adas_core.Domain.Models.DTO;
/// <summary>
/// Represents a data transfer object (DTO) used to encapsulate and transfer device-related information between application layers or services.
/// </summary>
public class DeviceDto
{
public DeviceEvent? Event { get; set; }
@@ -22,6 +25,12 @@ public class DeviceDto
public List<ObjectId>? PointOfCareIds { get; set; } = new();
public DeviceSettings? Settings { get; set; }
}
/// <summary>
/// Represents an event associated with a device, encapsulating information about a device-related occurrence or state change.
/// </summary>
/// <remarks>
/// This class is intended to be used as a data carrier for device event notifications or processing.
/// </remarks>
public class DeviceEvent
{
public ClickType? ClickType { get; set; }