reactredux/webapi/WeatherForecast/Models/PageSections/FeaturedBologsSectionModel.cs

8 lines
215 B
C#

using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models.PageSections {
public class FeaturedBologsSectionModel : PageSectionModel {
public List<BlogItemModel> Items { get; set; }
}
}