using DomainObjects.PageSections;
using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models.Content.Responses.PageSections {
  /// 
  /// 
  /// 
  public class FeaturedBlogSectionModel : PageSectionModelBase {
    /// 
    /// 
    /// 
    public string ReadTime { get; set; }
    /// 
    /// 
    /// 
    /// 
    public FeaturedBlogSectionModel(FeaturedBlogSection featuredBlogSection) : base(featuredBlogSection) {
      ReadTime = featuredBlogSection.ReadTime;
    }
  }
}