| | 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 ManageTeamInfo : IConferenceBreadcrumb |
| | 9 | | { |
| 0 | 10 | | public string OrganizationName { get; set; } |
| | 11 | |
|
| 0 | 12 | | public string OrganizationShort { get; set; } |
| | 13 | |
|
| 0 | 14 | | public string OrganizationId { get; set; } |
| | 15 | |
|
| 0 | 16 | | public string ProjectName { get; set; } |
| | 17 | |
|
| 0 | 18 | | public string ProjectShort { get; set; } |
| | 19 | |
|
| 0 | 20 | | public string ProjectId { get; set; } |
| | 21 | |
|
| 0 | 22 | | public string ConferenceName { get; set; } |
| | 23 | |
|
| 0 | 24 | | public string ConferenceShort { get; set; } |
| | 25 | |
|
| 0 | 26 | | public string ConferenceId { get; set; } |
| | 27 | |
|
| 0 | 28 | | public List<TeamRoleGroupInfo> RoleGroups { get; set; } |
| | 29 | | } |
| | 30 | |
|
| | 31 | | public class TeamRoleGroupInfo |
| | 32 | | { |
| | 33 | | public int TeamRoleGroupId { get; set; } |
| | 34 | |
|
| | 35 | | public string Name { get; set; } |
| | 36 | |
|
| | 37 | | public string FullName { get; set; } |
| | 38 | |
|
| | 39 | | public string Short { get; set; } |
| | 40 | |
|
| | 41 | | public List<TeamRoleInfo> Roles { get; set; } |
| | 42 | | } |
| | 43 | |
|
| | 44 | | public class TeamRoleInfo |
| | 45 | | { |
| | 46 | | public int TeamRoleId { get; set; } |
| | 47 | |
|
| | 48 | | public string Name { get; set; } |
| | 49 | |
|
| | 50 | | public string FullName { get; set; } |
| | 51 | |
|
| | 52 | | public string Short { get; set; } |
| | 53 | |
|
| | 54 | | public int? ParentId { get; set; } |
| | 55 | |
|
| | 56 | | public string ParentName { get; set; } |
| | 57 | |
|
| | 58 | | public List<RoleParticipant> Participants { get; set; } |
| | 59 | | } |
| | 60 | |
|
| | 61 | | public class RoleParticipant |
| | 62 | | { |
| | 63 | | public string ParticipantUsername { get; set; } |
| | 64 | |
|
| | 65 | | public string ParticipantDisplayName { get; set; } |
| | 66 | | } |
| | 67 | | } |