lg_backend/langguanApi/Model/Alert.cs

24 lines
779 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
}
2024-06-13 16:39:07 +00:00
public class AddAlertDto
{
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; }
}
2024-05-20 14:56:49 +00:00
}