Alarm.cs 213 B

123456789
  1. namespace Device;
  2. public class Alarm
  3. {
  4. public Guid DeviceID { get; set; }
  5. public string? AlarmCode { get; set; }
  6. public string? AlarmName { get; set; }
  7. public DateTime AlarmTime { get; set; }
  8. }