| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.ComponentModel.DataAnnotations; |
| | | 4 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 5 | | using System.Linq; |
| | | 6 | | using System.Runtime.Serialization; |
| | | 7 | | using System.Threading.Tasks; |
| | | 8 | | |
| | | 9 | | namespace MUNity.Database.Models.Conference.Roles; |
| | | 10 | | |
| | | 11 | | /// <summary> |
| | | 12 | | /// The Secretary General Role is one of the most important roles of the conference. |
| | | 13 | | /// You are technically able to create more than one of this roles. |
| | | 14 | | /// </summary> |
| | | 15 | | public class ConferenceSecretaryGeneralRole : AbstractConferenceRole |
| | | 16 | | { |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// The Title of this role for Example: |
| | | 20 | | /// His Excellence the Secretary General. |
| | | 21 | | /// </summary> |
| | | 22 | | [MaxLength(250)] |
| | 1 | 23 | | public string Title { get; set; } |
| | | 24 | | |
| | | 25 | | } |