| | 1 | | using MUNity.Base; |
| | 2 | | using System; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.Text; |
| | 5 | | using static MUNity.Schema.Simulation.PetitionTypeDto; |
| | 6 | |
|
| | 7 | | namespace MUNity.Schema.Simulation.Managment |
| | 8 | | { |
| | 9 | | public class PossiblePetitionsResponse |
| | 10 | | { |
| 0 | 11 | | public long PetitionTypeSimulationId { get; set; } |
| | 12 | |
|
| 0 | 13 | | public string TypeName { get; set; } |
| | 14 | |
|
| 0 | 15 | | public string TypeDescription { get; set; } |
| | 16 | |
|
| 0 | 17 | | public string TypeReference { get; set; } |
| | 18 | |
|
| 0 | 19 | | public PetitionRulings TypeRuling { get; set; } |
| | 20 | |
|
| 0 | 21 | | public string TypeCategory { get; set; } |
| | 22 | |
|
| 0 | 23 | | public int OrderIndex { get; set; } |
| | 24 | |
|
| 0 | 25 | | public bool AllowChairs { get; set; } |
| | 26 | |
|
| 0 | 27 | | public bool AllowDelegates { get; set; } |
| | 28 | |
|
| 0 | 29 | | public bool AllowNgo { get; set; } |
| | 30 | |
|
| 0 | 31 | | public bool AllowSpectator { get; set; } |
| | 32 | | } |
| | 33 | | } |