| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Simulation.Managment |
| | 6 | | { |
| | 7 | | public class AddPetitionTypeRequestBody : SimulationRequest |
| | 8 | | { |
| 0 | 9 | | public int PetitionTypeId { get; set; } |
| | 10 | |
|
| 0 | 11 | | public int OrderIndex { get; set; } = -1; |
| | 12 | |
|
| 0 | 13 | | public bool AllowChairs { get; set; } = false; |
| | 14 | |
|
| 0 | 15 | | public bool AllowDelegates { get; set; } = true; |
| | 16 | |
|
| 0 | 17 | | public bool AllowNgo { get; set; } = false; |
| | 18 | |
|
| 0 | 19 | | public bool AllowSpectator { get; set; } = false; |
| | 20 | | } |
| | 21 | | } |