| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Text; |
| | 5 | | using System.Threading.Tasks; |
| | 6 | |
|
| | 7 | | namespace MUNity.Database.Models.Conference; |
| | 8 | |
|
| | 9 | | public class ConferenceApplicationOptions |
| | 10 | | { |
| 0 | 11 | | public int ConferenceApplicationOptionsId { get; set; } |
| | 12 | |
|
| 0 | 13 | | public string ConferenceId { get; set; } |
| | 14 | |
|
| 1 | 15 | | public Conference Conference { get; set; } |
| | 16 | |
|
| | 17 | |
|
| 1 | 18 | | public bool IsActive { get; set; } |
| | 19 | |
|
| 2 | 20 | | public bool AllowDelegationApplication { get; set; } |
| | 21 | |
|
| 1 | 22 | | public bool AllowRoleApplication { get; set; } |
| | 23 | |
|
| 0 | 24 | | public bool AllowTeamApplication { get; set; } |
| | 25 | |
|
| 1 | 26 | | public bool AllowDelegationWishApplication { get; set; } |
| | 27 | |
|
| 1 | 28 | | public bool AllowCountryWishApplication { get; set; } |
| | 29 | |
|
| 0 | 30 | | public bool AllowFilterByCommitteeType { get; set; } |
| | 31 | |
|
| 1 | 32 | | public DateTime? ApplicationStartDate { get; set; } |
| | 33 | |
|
| 1 | 34 | | public DateTime? ApplicationEndDate { get; set; } |
| | 35 | |
|
| 1 | 36 | | public ICollection<ConferenceApplicationFormula> Formulas { get; set; } |
| | 37 | | } |