reactredux/webapi/WeatherForecast/Models/PageSections/FeaturedBologsSectionModel.cs

18 lines
481 B
C#

using Core.DomainObjects.PageSections;
using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models.PageSections {
/// <summary>
///
/// </summary>
public class FeaturedBlogsSectionModel : PageSectionModelBase<FeaturedBlogsSection> {
/// <summary>
///
/// </summary>
/// <param name="featuredBlogsSection"></param>
public FeaturedBlogsSectionModel(FeaturedBlogsSection featuredBlogsSection) : base(featuredBlogsSection) { }
}
}