customer/internal/models/cart.go

8 lines
106 B
Go
Raw Normal View History

2023-05-19 06:57:36 +00:00
package models
type AddItemToCart struct {
2023-06-29 13:31:16 +00:00
UserID string
TariffID string
AccessToken string
2023-05-19 06:57:36 +00:00
}