using Core.Abstractions.DomainObjects; namespace Core.DomainObjects.PageSections { public class TitleSection : PageSectionBase { public Image? Image { get; set; } public Link? PrimaryLink { get; set; } public Link? SecondaryLink { get; set; } public string? PostedOnBy { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }