18 lines
		
	
	
		
			511 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			511 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using DomainObjects.PageSections;
 | |
| using WeatherForecast.Models.Abstractions;
 | |
| 
 | |
| namespace WeatherForecast.Models.Content.Responses.PageSections {
 | |
| 
 | |
|   /// <summary>
 | |
|   /// 
 | |
|   /// </summary>
 | |
|   public class ShippingAddressSectionModel : AddressSectionModelBase<ShippingAddressSection> {
 | |
| 
 | |
|     /// <summary>
 | |
|     /// 
 | |
|     /// </summary>
 | |
|     /// <param name="shippingAddressSection"></param>
 | |
|     public ShippingAddressSectionModel(ShippingAddressSection shippingAddressSection) : base(shippingAddressSection) { }
 | |
|   }
 | |
| }
 |