| | 1 | | using MUNity.Base; |
| | 2 | | using System; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.Text; |
| | 5 | |
|
| | 6 | | namespace MUNity.Schema.Simulation |
| | 7 | | { |
| | 8 | | public class CreatePetitionTypeRequest : SimulationRequest |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// A Name to Display this petition. For example: Right of information. |
| | 12 | | /// </summary> |
| 0 | 13 | | public string Name { get; set; } |
| | 14 | |
|
| | 15 | | /// <summary> |
| | 16 | | /// More information to give about this petition type |
| | 17 | | /// </summary> |
| 0 | 18 | | public string Description { get; set; } |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// A Reference to where you get more information about this petition. This could be a link or |
| | 22 | | /// a name of the paragraph insiide the rules of procedure. |
| | 23 | | /// </summary> |
| 0 | 24 | | public string Reference { get; set; } |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// How do you get to vote on this Petitiontype |
| | 28 | | /// </summary> |
| 0 | 29 | | public PetitionRulings Ruling { get; set; } |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// A category for the petitiontype |
| | 33 | | /// </summary> |
| 0 | 34 | | public string Category { get; set; } |
| | 35 | | } |
| | 36 | | } |