| | | 1 | | using MUNity.Base; |
| | | 2 | | using MUNity.Database.Models.User; |
| | | 3 | | using System; |
| | | 4 | | using System.Collections.Generic; |
| | | 5 | | using System.Linq; |
| | | 6 | | using System.Text; |
| | | 7 | | using System.Threading.Tasks; |
| | | 8 | | |
| | | 9 | | namespace MUNity.Database.Models.Conference |
| | | 10 | | { |
| | | 11 | | /// <summary> |
| | | 12 | | /// A fill application allows to take any type of role at the conference. |
| | | 13 | | /// The user is open to take any of the roles or fill up in any delegation, committee etc. |
| | | 14 | | /// </summary> |
| | | 15 | | public class FillApplication |
| | | 16 | | { |
| | 0 | 17 | | public int FillApplicationId { get; set; } |
| | | 18 | | |
| | 0 | 19 | | public MunityUser User { get; set; } |
| | | 20 | | |
| | 0 | 21 | | public Conference Conference { get; set; } |
| | | 22 | | |
| | 0 | 23 | | public string PreferedRoleType { get; set; } |
| | | 24 | | |
| | 0 | 25 | | public ICollection<ConferenceFillApplicationFieldInput> Inputs { get; set; } |
| | | 26 | | |
| | 0 | 27 | | public DateTime ApplicationDate { get; set; } |
| | | 28 | | |
| | 0 | 29 | | public ApplicationStatuses Status { get; set; } |
| | | 30 | | } |
| | | 31 | | } |