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.
20 lines
383 B
20 lines
383 B
namespace JiLinApp.Docking.VibrateAlarm;
|
|
|
|
public class TcpSensorTable
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int DeviceId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Lat { get; set; }
|
|
|
|
public string Lng { get; set; }
|
|
|
|
public string Channel { get; set; }
|
|
|
|
public string Mode { get; set; }
|
|
|
|
public string Sensitivity { get; set; }
|
|
}
|