| | 1 | | using MUNity.Base; |
| | 2 | |
|
| | 3 | | namespace MUNity.Database.Models.Simulation; |
| | 4 | |
|
| | 5 | | public class PetitionTemplateEntry |
| | 6 | | { |
| 0 | 7 | | public string Name { get; set; } |
| | 8 | |
|
| 0 | 9 | | public string Description { get; set; } |
| | 10 | |
|
| 0 | 11 | | public string Reference { get; set; } |
| | 12 | |
|
| 0 | 13 | | public PetitionRulings Ruling { get; set; } |
| | 14 | |
|
| 0 | 15 | | public string Category { get; set; } |
| | 16 | |
|
| 0 | 17 | | public bool AllowChairs { get; set; } |
| | 18 | |
|
| 0 | 19 | | public bool AllowDelegates { get; set; } |
| | 20 | |
|
| 0 | 21 | | public bool AllowNgo { get; set; } |
| | 22 | |
|
| 0 | 23 | | public bool AllowSpectator { get; set; } |
| | 24 | | } |