You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
503 B
17 lines
503 B
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; }
|
|
}
|
|
} |