| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Text; |
| | 5 | | using System.Threading.Tasks; |
| | 6 | |
|
| | 7 | | namespace MUNity.Database.Models.Conference |
| | 8 | | { |
| | 9 | | public class ConferenceDashboardCard |
| | 10 | | { |
| 0 | 11 | | public int ConferenceDashboardCardId { get; set; } |
| | 12 | |
|
| 1 | 13 | | public Conference Conference { get; set; } |
| | 14 | |
|
| 1 | 15 | | public string LanguageCode { get; set; } |
| | 16 | |
|
| 1 | 17 | | public string Title { get; set; } |
| | 18 | |
|
| 1 | 19 | | public string Text { get; set; } |
| | 20 | |
|
| 1 | 21 | | public bool ShowToRegistrationButton { get; set; } |
| | 22 | |
|
| 1 | 23 | | public bool ShowToWebsiteButton { get; set; } |
| | 24 | |
|
| 1 | 25 | | public string ExternalWebsiteLink { get; set; } |
| | 26 | |
|
| 1 | 27 | | public bool Active { get; set; } |
| | 28 | | } |
| | 29 | | } |