rama creada apartir de master en j
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user