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