using Core.DomainObjects; using Core.DomainObjects.PageSections; namespace Core.Abstractions.DomainObjects { public abstract class PageBase : DomainObjectBase { public Header Header { get; set; } public TitleSection? TitleSection { get; set; } } }