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