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