using DomainObjects.PageSections;
using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models.Content.Responses.PageSections {
  /// 
  /// 
  /// 
  public class TestimonialsSectionModel : PageSectionModelBase {
    /// 
    /// 
    /// 
    public List Items { get; set; }
    /// 
    /// 
    /// 
    /// 
    public TestimonialsSectionModel(TestimonialsSection testimonialsSection) : base(testimonialsSection) {
      Items = testimonialsSection.Items.Select(x => new TestimonialModel(x)).ToList();
    }
  }
}