| | 1 | | using System; |
| | 2 | |
|
| | 3 | | namespace MUNity.Database.Models.Simulation; |
| | 4 | |
|
| | 5 | | public class PresentsState |
| | 6 | | { |
| | 7 | | public enum PresentsStates |
| | 8 | | { |
| | 9 | | NotChecked, |
| | 10 | | Present, |
| | 11 | | Absent, |
| | 12 | | Late |
| | 13 | | } |
| | 14 | |
|
| 0 | 15 | | public int PresentsStateId { get; set; } |
| | 16 | |
|
| 0 | 17 | | public SimulationPresents SimulationPresents { get; set; } |
| | 18 | |
|
| 0 | 19 | | public SimulationUser SimulationUser { get; set; } |
| | 20 | |
|
| 0 | 21 | | public PresentsStates State { get; set; } |
| | 22 | |
|
| 0 | 23 | | public string StateValue { get; set; } |
| | 24 | |
|
| 0 | 25 | | public DateTime? RegistertTimestamp { get; set; } |
| | 26 | | } |