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.
iot/projects/IoT/IoT.Shared/Application/Models/DeviceDto.cs

30 lines
657 B

namespace Application.Models
{
public class DeviceDto
{
public string Gateway { get; set; }
public string Name { get; set; }
public string Number { get; set; }
public string DisplayName { get; set; }
public string Tag { get; set; }
public bool IsOnline { get; set; }
public string Icon { get; set; }
public string Ip { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string ConnectId { get; set; }
public string ProductNumber { get; set; }
public string NodeNumber { get; set; }
}
}