| | 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 | | /// A visitor role is for someone who just wants to come to the conference |
| | 13 | | /// without being part of any of the other roles. |
| | 14 | | /// </summary> |
| | 15 | | public class ConferenceVisitorRole : AbstractConferenceRole |
| | 16 | | { |
| | 17 | | [MaxLength(100)] |
| 0 | 18 | | public string Organization { get; set; } |
| | 19 | |
|
| | 20 | | } |