using WeatherForecast.Models.Abstractions; using WeatherForecast.Models.PageSections; namespace WeatherForecast.Models.Pages { public class BlogItemPageModel : PageModel { public BlogTitleSectionModel TitleSection { get; set; } public CommentsSectionModel CommentsSection { get; set; } } }