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.

22 lines
356 B

2 years ago
namespace JiLinApp.Docking.VibrateAlarm;
public class TcpAlarmHost
2 years ago
{
public int Id { get; set; }
2 years ago
public string Name
{
get
{
return "设备" + Id;
}
}
2 years ago
public string Ip { get; set; }
2 years ago
public string Port { get; set; }
2 years ago
public string Lat { get; set; }
2 years ago
public string Lng { get; set; }
2 years ago
}