reactredux/webapi/Core/DomainObjects/Pages/BlogItemPage.cs

16 lines
422 B
C#

using Core.Abstractions.DomainObjects;
using Core.DomainObjects.PageSections;
namespace Core.DomainObjects.Pages {
public class BlogItemPage : PageBase<BlogItemPage> {
public Header Header { get; set; }
public BlogTitleSection TitleSection { get; set; }
public CommentsSection CommentsSection { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}
}