| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.ComponentModel.DataAnnotations; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Text; |
| | 6 | | using System.Threading.Tasks; |
| | 7 | |
|
| | 8 | | namespace MUNity.Database.Models.Website; |
| | 9 | |
|
| | 10 | | public class ConferencePageColorScheme |
| | 11 | | { |
| 0 | 12 | | public int ConferencePageColorSchemeId { get; set; } |
| | 13 | |
|
| 0 | 14 | | public Models.Conference.Conference Conference { get; set; } |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Hex Color Code of the primary Color. #FF00FF |
| | 18 | | /// </summary> |
| | 19 | | [MaxLength(7)] |
| 0 | 20 | | public string PrimaryColor { get; set; } |
| | 21 | |
|
| | 22 | | [MaxLength(7)] |
| 0 | 23 | | public string SecondaryColor { get; set; } |
| | 24 | |
|
| | 25 | | [MaxLength(7)] |
| 0 | 26 | | public string MenuBackColor { get; set; } |
| | 27 | |
|
| | 28 | | [MaxLength(7)] |
| 0 | 29 | | public string MenuForeColor { get; set; } |
| | 30 | | } |