mirror of
				https://github.com/3ybactuk/marketplace-go-service-project.git
				synced 2025-10-31 06:23:44 +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
 | |
| }
 | 
