| | | 1 | | using MUNity.Base; |
| | | 2 | | using MUNity.Schema.Simulation; |
| | | 3 | | using System; |
| | | 4 | | using System.Collections.Generic; |
| | | 5 | | using System.Linq; |
| | | 6 | | using System.Threading.Tasks; |
| | | 7 | | |
| | | 8 | | namespace MUNityCore.Dtos.Simulations |
| | | 9 | | { |
| | | 10 | | public class SimulationUserInfoDto |
| | | 11 | | { |
| | 0 | 12 | | public int SimulationUserId { get; set; } |
| | | 13 | | |
| | 0 | 14 | | public string DisplayName { get; set; } |
| | | 15 | | |
| | 0 | 16 | | public string RoleName { get; set; } |
| | | 17 | | |
| | 0 | 18 | | public string RoleIso { get; set; } |
| | | 19 | | |
| | 0 | 20 | | public RoleTypes RoleType { get; set; } |
| | | 21 | | |
| | 0 | 22 | | public bool IsOnline { get; set; } |
| | | 23 | | } |
| | | 24 | | } |