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