using Core.DomainObjects.PageSections; using WeatherForecast.Models.Abstractions; namespace WeatherForecast.Models.PageSections { /// /// /// public class ShopItemsSectionModel : PageSectionModelBase { /// /// /// public string AddToCart { get; set; } /// /// /// /// public ShopItemsSectionModel(ShopItemsSection shopItemSection) : base(shopItemSection) { AddToCart = shopItemSection.AddToCart; } } }