| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | |
| | | 5 | | namespace MUNity.Schema.Conference |
| | | 6 | | { |
| | | 7 | | public class UserApplicationInfo |
| | | 8 | | { |
| | | 9 | | public int ApplicationId { get; set; } |
| | | 10 | | |
| | | 11 | | public string ConferenceId { get; set; } |
| | | 12 | | |
| | | 13 | | public string ConferenceName { get; set; } |
| | | 14 | | |
| | | 15 | | public string ConferenceFullName { get; set; } |
| | | 16 | | |
| | | 17 | | public string ConferenceShort { get; set; } |
| | | 18 | | |
| | | 19 | | public List<UserApplicationDelegation> Delegations { get; set; } |
| | | 20 | | } |
| | | 21 | | |
| | | 22 | | public class UserApplicationDelegation |
| | | 23 | | { |
| | 0 | 24 | | public string DelegationId { get; set; } |
| | | 25 | | |
| | 0 | 26 | | public string DelegationName { get; set; } |
| | | 27 | | } |
| | | 28 | | } |