19 lines
608 B
C#
19 lines
608 B
C#
using Core.Abstractions.DomainObjects;
|
|
using Core.DomainObjects.PageSections;
|
|
|
|
namespace Core.DomainObjects.Pages {
|
|
public class HomePage : PageBase<HomePage> {
|
|
|
|
public Header Header { get; set; }
|
|
public TitleSection TitleSection { get; set; }
|
|
public FeaturesSection FeaturesSection { get; set; }
|
|
public TestimonialsSection TestimonialsSection { get; set; }
|
|
public FeaturedBologsSection FeaturedBlogsSection { get; set; }
|
|
public CallToActionSection CallToActionSection { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|