| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | |
| | | 5 | | namespace MUNity.Schema.Simulation |
| | | 6 | | { |
| | | 7 | | /// <summary> |
| | | 8 | | /// Select a new Role for a given user. |
| | | 9 | | /// </summary> |
| | | 10 | | public class SetUserSimulationRole : SimulationRequest |
| | | 11 | | { |
| | | 12 | | /// <summary> |
| | | 13 | | /// The SimulationUserId that the Roles should be changed of. |
| | | 14 | | /// </summary> |
| | 0 | 15 | | public int UserId { get; set; } |
| | | 16 | | |
| | | 17 | | /// <summary> |
| | | 18 | | /// The RoleId that the user should select |
| | | 19 | | /// <seealso cref="SimulationRoleDto"/> |
| | | 20 | | /// </summary> |
| | 0 | 21 | | public int RoleId { get; set; } |
| | | 22 | | } |
| | | 23 | | } |