| | 1 | | using System.Collections.Generic; |
| | 2 | | using System.Linq; |
| | 3 | | using System.Text; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | | using MUNity.Base; |
| | 6 | | using MUNity.Database.Models.Conference; |
| | 7 | |
|
| | 8 | | namespace MUNity.Database.Models.Conference; |
| | 9 | |
|
| | 10 | | public class ConferenceApplicationFormula |
| | 11 | | { |
| 0 | 12 | | public int ConferenceApplicationFormulaId { get; set; } |
| | 13 | |
|
| 1 | 14 | | public ConferenceApplicationOptions Options { get; set; } |
| | 15 | |
|
| 0 | 16 | | public ConferenceApplicationFormulaTypes FormulaType { get; set; } |
| | 17 | |
|
| 1 | 18 | | public string PreContent { get; set; } |
| | 19 | |
|
| 1 | 20 | | public string PostContent { get; set; } |
| | 21 | |
|
| 1 | 22 | | public string Title { get; set; } |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// Should the user that applies for this role have a Fore and Lastname set |
| | 26 | | /// </summary> |
| 1 | 27 | | public bool RequiresName { get; set; } |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Should the user that applies have an address set in their profile |
| | 31 | | /// </summary> |
| 1 | 32 | | public bool RequiresAddress { get; set; } |
| | 33 | |
|
| | 34 | | /// <summary> |
| | 35 | | /// Is the user required to input a school into their profile. |
| | 36 | | /// </summary> |
| 0 | 37 | | public bool RequiresSchool { get; set; } |
| | 38 | |
|
| 1 | 39 | | public int? MaxWishes { get; set; } |
| | 40 | |
|
| 5 | 41 | | public ICollection<ConferenceApplicationField> Fields { get; set; } |
| | 42 | | } |