reactredux/webapi/WeatherForecast/Models/Content/Responses/PageSections/BillingAddressSectionModel.cs

18 lines
504 B
C#

using DomainObjects.PageSections;
using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models.Content.Responses.PageSections {
/// <summary>
///
/// </summary>
public class BillingAddressSectionModel : AddressSectionModelBase<BillingAddressSection> {
/// <summary>
///
/// </summary>
/// <param name="billingAddressSection"></param>
public BillingAddressSectionModel(BillingAddressSection billingAddressSection) : base(billingAddressSection) { }
}
}