1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class ExamWarning
- {
-
-
-
- public int ID { get; set; }
-
-
-
- public int WarningCount { get; set; }
-
-
-
- public string Message { get; set; }
-
-
-
- public string Creator { get; set; }
-
-
-
- public string CreatorName { get; set; }
-
-
-
- public System.DateTime Modified { get; set; }
-
-
-
- public int AlertType { get; set; }
- }
- }
|