12345678910111213141516171819202122232425262728293031323334353637383940 |
- using Edge.Core.IndustryStandardInterface.ATG;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace Application.ATG_Classic_App.Model
- {
- public class Alarm
- {
-
-
-
- [Key]
- public int Id { get; set; }
- public AlarmPriority Priority { get; set; }
-
-
-
- public byte TankNumber { get; set; }
- public AlarmType Type { get; set; }
- public string Description { get; set; }
-
-
-
-
- public DateTime CreatedTimeStamp { get; set; }
-
-
-
- public DateTime? ClearedTimeStamp { get; set; }
- }
- }
|