reactredux/webapi/WeatherForecast/Models/Pages/BlogCatalogPageModel.cs

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; }
}
}