18 lines
448 B
Go
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
|
|
}
|