lg_backend/langguanApi/Model/Alert.cs

14 lines
410 B
C#
Raw Permalink Normal View History

2024-05-20 14:56:49 +00:00
namespace langguanApi.Model
{
public class Alert : BaseModel
{
2024-05-21 15:53:40 +00:00
public string DeviceId { get; set; }
2024-05-20 14:56:49 +00:00
public string DeviceMn { get; set; }
2024-05-21 15:53:40 +00:00
public string deviceName { get; set; }
public string DeviceType { get; set; }
public string DeviceStatus { get; set; }
public string AlertType { get; set; }
public string AlertContent { get; set; }
2024-05-20 14:56:49 +00:00
}
}