jaecoo-be/app/module/products/response/products.response.go

20 lines
513 B
Go
Raw Normal View History

2025-11-15 17:43:23 +00:00
package response
import (
"time"
)
type ProductsResponse struct {
ID uint `json:"id"`
Title string `json:"title"`
Variant *string `json:"variant"`
Price *float64 `json:"price"`
ThumbnailPath *string `json:"thumbnail_path"`
ThumbnailUrl *string `json:"thumbnail_url"`
Colors []string `json:"colors"`
IsActive *bool `json:"is_active"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}