| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | |
| | | 5 | | namespace MUNity.Schema.Simulation |
| | | 6 | | { |
| | | 7 | | /// <summary> |
| | | 8 | | /// Response of creating a Simulation. The creation will automatically create a first user |
| | | 9 | | /// this response will return the Id, password and a token for this first user. |
| | | 10 | | /// </summary> |
| | | 11 | | public class CreateSimulationResponse |
| | | 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 (Display Name) |
| | | 20 | | /// </summary> |
| | 0 | 21 | | public string SimulationName { get; set; } |
| | | 22 | | |
| | | 23 | | /// <summary> |
| | | 24 | | /// The user of the first user that was added. This is the owner and the user has the owner auth of this |
| | | 25 | | /// simulation. |
| | | 26 | | /// </summary> |
| | 0 | 27 | | public string FirstUserId { get; set; } |
| | | 28 | | |
| | | 29 | | /// <summary> |
| | | 30 | | /// The inital password of the owner. |
| | | 31 | | /// </summary> |
| | 0 | 32 | | public string FirstUserPassword { get; set; } |
| | | 33 | | |
| | | 34 | | /// <summary> |
| | | 35 | | /// The user token of the owner. |
| | | 36 | | /// </summary> |
| | 0 | 37 | | public string FirstUserToken { get; set; } |
| | | 38 | | } |
| | | 39 | | } |