using Core.Abstractions.DomainObjects; namespace Core.DomainObjects.PageSections { public class FeaturesSection : PageSectionBase { public List Items { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }