reactredux/webapi/WeatherForecast/Models/Pages/ShopItemPageModel.cs

10 lines
320 B
C#

using WeatherForecast.Models.Abstractions;
using WeatherForecast.Models.PageSections;
namespace WeatherForecast.Models.Pages {
public class ShopItemPageModel : PageModel {
public ProductSectionModel ProductSection { get; set; }
public RelatedProductsSectionModel RelatedProductsSection { get; set; }
}
}