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

8 lines
208 B
C#

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