30 lines
711 B
C#
30 lines
711 B
C#
using Core.DomainObjects.PageSections;
|
|
using WeatherForecast.Models.Abstractions;
|
|
|
|
namespace WeatherForecast.Models.PageSections {
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class FeaturedBlogSectionModel : PageSectionModelBase<FeaturedBlogSection> {
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ReadTime { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public FeaturedBlogSectionModel() : base() { }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="featuredBlogSection"></param>
|
|
public FeaturedBlogSectionModel(FeaturedBlogSection featuredBlogSection) : base(featuredBlogSection) {
|
|
ReadTime = featuredBlogSection.ReadTime;
|
|
}
|
|
}
|
|
}
|