using Core.DomainObjects.PageSections;
using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models.PageSections {
  /// 
  /// 
  /// 
  public class CheckoutSettingsSectionModel : PageSectionModelBase {
    /// 
    /// 
    /// 
    public string ShippingAddressSameAsBillingAddress { get; set; }
    /// 
    /// 
    /// 
    public string SaveThisInformation { get; set; }
    /// 
    /// 
    /// 
    /// 
    public CheckoutSettingsSectionModel(SettingsSection settingsSection) : base(settingsSection) {
      ShippingAddressSameAsBillingAddress = settingsSection.ShippingAddressSameAsBillingAddress;
      SaveThisInformation = settingsSection.SaveThisInformation;
    }
  }
}