| | 1 | | using MUNity.Schema.General; |
| | 2 | | using System; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.Text; |
| | 5 | |
|
| | 6 | | namespace MUNity.Schema.Conference |
| | 7 | | { |
| | 8 | | public class ManageCommitteesInfo : IConferenceBreadcrumb |
| | 9 | | { |
| | 10 | | public string OrganizationId { get; set; } |
| | 11 | |
|
| | 12 | | public string OrganizationShort { get; set; } |
| | 13 | |
|
| | 14 | | public string ProjectId { get; set; } |
| | 15 | |
|
| | 16 | | public string ProjectShort { get; set; } |
| | 17 | | public string OrganizationName { get; set; } |
| | 18 | | public string ProjectName { get; set; } |
| | 19 | | public string ConferenceId { get; set; } |
| | 20 | | public string ConferenceName { get; set; } |
| | 21 | | public string ConferenceShort { get; set; } |
| | 22 | |
|
| | 23 | | public List<ManageCommitteeInfo> Committees { get; set; } |
| | 24 | |
|
| | 25 | | } |
| | 26 | |
|
| | 27 | | public class ManageCommitteeInfo |
| | 28 | | { |
| 0 | 29 | | public string CommitteeId { get; set; } |
| | 30 | |
|
| 0 | 31 | | public string CommitteeName { get; set; } |
| | 32 | |
|
| 0 | 33 | | public string CommitteeShort { get; set; } |
| | 34 | |
|
| 0 | 35 | | public string ParentCommitteeId { get; set; } |
| | 36 | |
|
| 0 | 37 | | public string ParentCommitteeName { get; set; } |
| | 38 | |
|
| 0 | 39 | | public int SeatCount { get; set; } |
| | 40 | | } |
| | 41 | |
|
| | 42 | |
|
| | 43 | | } |