lg_backend/langguanApi/Model/Alert.cs

14 lines
410 B
C#

namespace langguanApi.Model
{
public class Alert : BaseModel
{
public string DeviceId { get; set; }
public string DeviceMn { get; set; }
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; }
}
}