| | 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 | | /// A role of a simulation/virtual committee. |
| | 10 | | /// </summary> |
| | 11 | | public class SimulationRoleDto |
| | 12 | | { |
| | 13 | |
|
| | 14 | | /// <summary> |
| | 15 | | /// The id of the role. |
| | 16 | | /// </summary> |
| 0 | 17 | | public int SimulationRoleId { get; set; } |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// The name of the role |
| | 21 | | /// </summary> |
| 0 | 22 | | public string Name { get; set; } |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// The type of role like Chairman, Delegate etc. |
| | 26 | | /// </summary> |
| 0 | 27 | | public RoleTypes RoleType { get; set; } |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// The iso of the role that could be used to find an icon for a role |
| | 31 | | /// </summary> |
| 0 | 32 | | public string Iso { get; set; } |
| | 33 | |
|
| | 34 | | /// <summary> |
| | 35 | | /// Display Names of users that have taking this role. |
| | 36 | | /// </summary> |
| 0 | 37 | | public List<string> Users { get; set; } |
| | 38 | | } |
| | 39 | | } |