Files
ps_shop/internal/viewmodel/product.go
T
2026-05-12 01:13:01 +02:00

18 lines
448 B
Go

package viewmodel
import (
pscart "prestaproxy/internal/prestashop/cart"
pscatalog "prestaproxy/internal/prestashop/catalog"
pscookie "prestaproxy/internal/prestashop/cookie"
pscustomer "prestaproxy/internal/prestashop/customer"
)
type ProductPageData struct {
Product pscatalog.ProductPageData
CategoryURL string
Session *pscookie.SessionContext
Customer *pscustomer.Profile
CartSummary *pscart.Summary
ShopBaseURL string
}