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