Class DeviceDto
Represents a data transfer object (DTO) used to encapsulate and transfer device-related information between application layers or services.
public class DeviceDto
- Inheritance
-
DeviceDto
- Inherited Members
- Extension Methods
Properties
Battery
public int? Battery { get; set; }
Property Value
- int?
Color
public string? Color { get; set; }
Property Value
Connected
public bool Connected { get; set; }
Property Value
CreatedAt
public DateTime CreatedAt { get; set; }
Property Value
DeviceType
public DeviceType DeviceType { get; set; }
Property Value
Event
public DeviceEvent? Event { get; set; }
Property Value
Key
public string? Key { get; set; }
Property Value
MacAddr
public string? MacAddr { get; set; }
Property Value
Name
public string? Name { get; set; }
Property Value
PointOfCareIds
public List<ObjectId>? PointOfCareIds { get; set; }
Property Value
- List<ObjectId>
Ready
public bool Ready { get; set; }
Property Value
SerialNumber
public string? SerialNumber { get; set; }
Property Value
Settings
public DeviceSettings? Settings { get; set; }
Property Value
UpdatedAt
public DateTime UpdatedAt { get; set; }
Property Value
Uuid
public string? Uuid { get; set; }