mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 22:13:44 +03:00
13 lines
127 B
Go
13 lines
127 B
Go
package entity
|
|
|
|
type (
|
|
UID int64
|
|
Sku int64
|
|
)
|
|
|
|
type Cart struct {
|
|
UserID UID
|
|
Items []Sku
|
|
ItemCount map[Sku]uint32
|
|
}
|