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.
16 lines
292 B
16 lines
292 B
2 years ago
|
namespace JiLinApp.Docking.VibrateAlarm;
|
||
|
|
||
2 years ago
|
public class TcpAlarmHost
|
||
2 years ago
|
{
|
||
2 years ago
|
public int Id { get; set; }
|
||
2 years ago
|
|
||
2 years ago
|
public string Name { get; set; }
|
||
2 years ago
|
|
||
2 years ago
|
public string Ip { get; set; }
|
||
2 years ago
|
|
||
2 years ago
|
public string Port { get; set; }
|
||
2 years ago
|
|
||
2 years ago
|
public string Lat { get; set; }
|
||
2 years ago
|
|
||
2 years ago
|
public string Lng { get; set; }
|
||
2 years ago
|
}
|