| | | 1 | | using MUNity.Base; |
| | | 2 | | using MUNity.Models.Simulation; |
| | | 3 | | using System; |
| | | 4 | | using System.Collections.Generic; |
| | | 5 | | using System.Text; |
| | | 6 | | |
| | | 7 | | namespace MUNity.Schema.Simulation |
| | | 8 | | { |
| | | 9 | | public class PetitionInfoDto |
| | | 10 | | { |
| | 0 | 11 | | public int AgendaItemId { get; set; } |
| | | 12 | | |
| | 0 | 13 | | public string PetitionId { get; set; } |
| | | 14 | | |
| | 0 | 15 | | public string SubmitterDisplayName { get; set; } |
| | | 16 | | |
| | 0 | 17 | | public string SubmitterRoleName { get; set; } |
| | | 18 | | |
| | 0 | 19 | | public string TypeName { get; set; } |
| | | 20 | | |
| | 0 | 21 | | public int? OrderIndex { get; set; } |
| | | 22 | | |
| | 0 | 23 | | public DateTime SubmitTime { get; set; } |
| | | 24 | | |
| | 0 | 25 | | public EPetitionStates Status { get; set; } |
| | | 26 | | |
| | 0 | 27 | | public string CategoryName { get; set; } |
| | | 28 | | |
| | 0 | 29 | | public string RoleIso { get; set; } = "un"; |
| | | 30 | | } |
| | | 31 | | } |