| | 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.Text; |
| | 7 | | using System.Threading.Tasks; |
| | 8 | |
|
| | 9 | | namespace MUNity.Database.Models.Website |
| | 10 | | { |
| | 11 | | public class ConferenceWebsiteFooter |
| | 12 | | { |
| | 13 | | [Key] |
| 0 | 14 | | public string ConferenceId { get; set; } |
| | 15 | |
|
| | 16 | | [ForeignKey(nameof(ConferenceId))] |
| 0 | 17 | | public Conference.Conference Conference { get; set; } |
| | 18 | |
|
| 0 | 19 | | public string FooterContent { get; set; } |
| | 20 | |
|
| 0 | 21 | | public DateTime LastUpdated { get; set; } |
| | 22 | | } |
| | 23 | | } |