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