8 lines
215 B
C#
8 lines
215 B
C#
using WeatherForecast.Models.Abstractions;
|
|
|
|
namespace WeatherForecast.Models.PageSections {
|
|
public class FeaturedBologsSectionModel : PageSectionModel {
|
|
public List<BlogItemModel> Items { get; set; }
|
|
}
|
|
}
|