| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Simulation |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// The user of a simulation. |
| | 9 | | /// </summary> |
| | 10 | | public class SimulationUserDefaultDto : IUserItem |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// The simulation user Id. |
| | 14 | | /// </summary> |
| 0 | 15 | | public int SimulationUserId { get; set; } |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// The display name of the user. |
| | 19 | | /// </summary> |
| 0 | 20 | | public string DisplayName { get; set; } |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// The current role this user has picked. |
| | 24 | | /// </summary> |
| 0 | 25 | | public int RoleId { get; set; } |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Returns of the user is connected or not. This is known if there is an active Hub Connection. |
| | 29 | | /// </summary> |
| 0 | 30 | | public bool IsOnline { get; set; } |
| | 31 | | } |
| | 32 | | } |