mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 14:03:45 +03:00
19 lines
183 B
Go
19 lines
183 B
Go
package entity
|
|
|
|
type (
|
|
ID int64
|
|
Sku int64
|
|
)
|
|
|
|
type Order struct {
|
|
OrderID ID
|
|
Status string
|
|
UserID ID
|
|
Items []OrderItem
|
|
}
|
|
|
|
type OrderItem struct {
|
|
ID Sku
|
|
Count uint32
|
|
}
|