| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Simulation |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// User Package for the administrators that can see and edit the users. |
| | 9 | | /// </summary> |
| | 10 | | public class SimulationUserAdminDto : SimulationUserDefaultDto |
| | 11 | | { |
| | 12 | |
|
| | 13 | | /// <summary> |
| | 14 | | /// The Public Id of the user. |
| | 15 | | /// </summary> |
| 0 | 16 | | public string PublicId { get; set; } |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// The password of the user. |
| | 20 | | /// </summary> |
| 0 | 21 | | public string Password { get; set; } |
| | 22 | | } |
| | 23 | | } |