14 lines
511 B
C#
14 lines
511 B
C#
using WeatherForecast.Models.Abstractions;
|
|
using WeatherForecast.Models.PageSections;
|
|
|
|
namespace WeatherForecast.Models.Pages {
|
|
public class HomePageModel : PageModel{
|
|
public TitleSectionModel TitleSection { get; set; }
|
|
public FeaturesSectionModel FeaturesSection { get; set; }
|
|
public TestimonialsSectionModel TestimonialsSection { get; set; }
|
|
public FeaturedBologsSectionModel FeaturedBlogsSection { get; set; }
|
|
public CallToActionSectionModel CallToActionSection { get; set; }
|
|
|
|
}
|
|
}
|