10 lines
357 B
C#
10 lines
357 B
C#
using Core.DomainObjects.PageSections;
|
|
using WeatherForecast.Models.Abstractions;
|
|
|
|
namespace WeatherForecast.Models.PageSections {
|
|
|
|
public class ShippingAddressSectionModel : AddressSectionModelBase<ShippingAddressSection> {
|
|
public ShippingAddressSectionModel(ShippingAddressSection shippingAddressSection) : base(shippingAddressSection) { }
|
|
}
|
|
}
|