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

10 lines
342 B
C#

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