reactredux/webapi/Core/Abstractions/DomainObjects/PageBase.cs

12 lines
272 B
C#

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