16 lines
418 B
C#
16 lines
418 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 TitleSection TitleSection { get; set; }
|
|
public CommentsSection CommentsSection { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|