10 lines
307 B
C#
10 lines
307 B
C#
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; }
|
|
}
|
|
}
|