| | | 1 | | using System.Collections.Generic; |
| | | 2 | | |
| | | 3 | | namespace MUNity.Database.Models.Conference |
| | | 4 | | { |
| | | 5 | | public class DelegationApplicationPickedDelegation |
| | | 6 | | { |
| | 0 | 7 | | public int DelegationApplicationPickedDelegationId { get; set; } |
| | | 8 | | |
| | 3 | 9 | | public DelegationApplication Application { get; set; } |
| | | 10 | | |
| | 3 | 11 | | public byte Priority { get; set; } |
| | | 12 | | |
| | 3 | 13 | | public Delegation Delegation { get; set; } |
| | | 14 | | |
| | 0 | 15 | | public ICollection<DelegationApplicationPickedDelegationUserWish> UserWishes { get; set; } |
| | | 16 | | |
| | 0 | 17 | | public string Comment { get; set; } |
| | | 18 | | } |
| | | 19 | | } |