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

13 lines
273 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; }
}
}