| | | 1 | | using MUNity.Base; |
| | | 2 | | using System; |
| | | 3 | | using System.Collections.Generic; |
| | | 4 | | using System.Text; |
| | | 5 | | |
| | | 6 | | namespace MUNity.Schema.Simulation |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// The schema you will get when asking for a simulation with a valid token. |
| | | 10 | | /// </summary> |
| | | 11 | | public class SimulationDto |
| | | 12 | | { |
| | | 13 | | /// <summary> |
| | | 14 | | /// the id of the simulation. |
| | | 15 | | /// </summary> |
| | 0 | 16 | | public int SimulationId { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// The name of the simulation. |
| | | 20 | | /// </summary> |
| | 0 | 21 | | public string Name { get; set; } |
| | | 22 | | |
| | | 23 | | /// <summary> |
| | | 24 | | /// The current phase of the simulation. |
| | | 25 | | /// </summary> |
| | 0 | 26 | | public GamePhases Phase { get; set; } |
| | | 27 | | |
| | | 28 | | /// <summary> |
| | | 29 | | /// The roles of the simulation. |
| | | 30 | | /// </summary> |
| | 0 | 31 | | public List<SimulationRoleDto> Roles { get; set; } |
| | | 32 | | |
| | | 33 | | /// <summary> |
| | | 34 | | /// The users of the simulation. |
| | | 35 | | /// </summary> |
| | 0 | 36 | | public List<SimulationUserDefaultDto> Users { get; set; } |
| | | 37 | | } |
| | | 38 | | } |