using Application.Domain.Entities; namespace Application.Models { public class DataDto { public string Key { get; set; } public string Value { get; set; } public string Name { get; set; } public DeviceDataType Type { get; set; } public string Unit { get; set; } public string Description { get; set; } public long Timestamp { get; set; } public bool Hidden { get; set; } public string DeviceNumber { get; set; } } }