15 lines
480 B
C#
15 lines
480 B
C#
using Core.DomainObjects.PageSections;
|
|
using WeatherForecast.Models.Abstractions;
|
|
|
|
namespace WeatherForecast.Models.PageSections {
|
|
public class FeaturedBlogSectionModel : PageSectionModelBase<FeaturedBlogSection> {
|
|
public string ReadTime { get; set; }
|
|
|
|
public FeaturedBlogSectionModel() : base() { }
|
|
|
|
public FeaturedBlogSectionModel(FeaturedBlogSection featuredBlogSection) : base(featuredBlogSection) {
|
|
ReadTime = featuredBlogSection.ReadTime;
|
|
}
|
|
}
|
|
}
|