10 lines
313 B
C#
10 lines
313 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using WeatherForecast.Models.PageSections;
|
|
|
|
namespace WeatherForecast.Models.Pages {
|
|
public class BlogCatalogPageModel : PageModel {
|
|
public TitleSectionModel TitleSection { get; set; }
|
|
public FeaturedBlogSectionModel FeaturedBlogSection { get; set; }
|
|
}
|
|
}
|