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