| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | |
|
| | 6 | | namespace MUNity.Database.Models.Simulation; |
| | 7 | |
|
| | 8 | | public class SimulationPresents |
| | 9 | | { |
| 0 | 10 | | public int SimulationPresentsId { get; set; } |
| | 11 | |
|
| 0 | 12 | | public Simulation Simulation { get; set; } |
| | 13 | |
|
| 0 | 14 | | public DateTime CreatedTime { get; set; } |
| | 15 | |
|
| 0 | 16 | | public DateTime? CheckedDate { get; set; } = null; |
| | 17 | |
|
| 0 | 18 | | public ICollection<PresentsState> CheckedUsers { get; set; } |
| | 19 | |
|
| 0 | 20 | | public bool MarkedFinished { get; set; } |
| | 21 | |
|
| 0 | 22 | | public SimulationPresents() |
| 0 | 23 | | { |
| 0 | 24 | | CreatedTime = DateTime.Now; |
| 0 | 25 | | } |
| | 26 | | } |