| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.ComponentModel.DataAnnotations; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Runtime.Serialization; |
| | 6 | | using System.Text.Json.Serialization; |
| | 7 | | using System.Threading.Tasks; |
| | 8 | |
|
| | 9 | | namespace MUNity.Database.Models.Conference; |
| | 10 | |
|
| | 11 | | /// <summary> |
| | 12 | | /// Use this if you want a group of users make custom applications but every one of this applications |
| | 13 | | /// should be collected in one giant stack and looked at together in one big bundle. |
| | 14 | | /// If you want multiple users to apply to the same Role or DelegationWishes you can also use |
| | 15 | | /// GroupApplication. |
| | 16 | | /// <see cref="GroupApplication"/> |
| | 17 | | /// |
| | 18 | | /// <seealso cref="RoleApplication"/> |
| | 19 | | /// </summary> |
| | 20 | | public class GroupedRoleApplication |
| | 21 | | { |
| 0 | 22 | | public int GroupedRoleApplicationId { get; set; } |
| | 23 | |
|
| 0 | 24 | | public string GroupName { get; set; } |
| | 25 | |
|
| 0 | 26 | | public ICollection<RoleApplication> Applications { get; set; } |
| | 27 | |
|
| 0 | 28 | | public DateTime CreateTime { get; set; } |
| | 29 | |
|
| | 30 | | } |