customer/internal/models/cart.go

8 lines
106 B
Go
Raw Normal View History

2023-06-22 09:36:43 +00:00
package models
type AddItemToCart struct {
2023-06-29 14:50:48 +00:00
UserID string
TariffID string
AccessToken string
2023-06-22 09:36:43 +00:00
}