18 lines
		
	
	
		
			494 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			494 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using DomainObjects.PageSections;
 | |
| using WeatherForecast.Models.Abstractions;
 | |
| 
 | |
| namespace WeatherForecast.Models.Content.Responses.PageSections {
 | |
| 
 | |
|   /// <summary>
 | |
|   /// 
 | |
|   /// </summary>
 | |
|   public class FeaturedBlogsSectionModel : PageSectionModelBase<FeaturedBlogsSection> {
 | |
| 
 | |
|     /// <summary>
 | |
|     /// 
 | |
|     /// </summary>
 | |
|     /// <param name="featuredBlogsSection"></param>
 | |
|     public FeaturedBlogsSectionModel(FeaturedBlogsSection featuredBlogsSection) : base(featuredBlogsSection) { }
 | |
|   }
 | |
| }
 |