| | | 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 | | { |
| | 0 | 10 | | public string OrganizationId { get; set; } |
| | | 11 | | |
| | 0 | 12 | | public string OrganizationShort { get; set; } |
| | | 13 | | |
| | 0 | 14 | | public string ProjectId { get; set; } |
| | | 15 | | |
| | 0 | 16 | | public string ProjectShort { get; set; } |
| | 0 | 17 | | public string OrganizationName { get; set; } |
| | 0 | 18 | | public string ProjectName { get; set; } |
| | 0 | 19 | | public string ConferenceId { get; set; } |
| | 0 | 20 | | public string ConferenceName { get; set; } |
| | 0 | 21 | | public string ConferenceShort { get; set; } |
| | | 22 | | |
| | 0 | 23 | | public List<ManageCommitteeInfo> Committees { get; set; } |
| | | 24 | | |
| | | 25 | | } |
| | | 26 | | |
| | | 27 | | public class ManageCommitteeInfo |
| | | 28 | | { |
| | | 29 | | public string CommitteeId { get; set; } |
| | | 30 | | |
| | | 31 | | public string CommitteeName { get; set; } |
| | | 32 | | |
| | | 33 | | public string CommitteeShort { get; set; } |
| | | 34 | | |
| | | 35 | | public string ParentCommitteeId { get; set; } |
| | | 36 | | |
| | | 37 | | public string ParentCommitteeName { get; set; } |
| | | 38 | | |
| | | 39 | | public int SeatCount { get; set; } |
| | | 40 | | } |
| | | 41 | | |
| | | 42 | | |
| | | 43 | | } |