mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 05:53:45 +03:00
10 lines
145 B
Go
10 lines
145 B
Go
package model
|
|
|
|
import "route256/cart/internal/domain/entity"
|
|
|
|
type Cart struct {
|
|
UserID entity.UID
|
|
Items []*Item
|
|
TotalPrice uint32
|
|
}
|