18 lines
446 B
Go
18 lines
446 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type ProductSpecificationsResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
ProductID uint `json:"product_id"`
|
||
|
|
Title string `json:"title"`
|
||
|
|
ThumbnailPath *string `json:"thumbnail_path"`
|
||
|
|
ThumbnailUrl *string `json:"thumbnail_url"`
|
||
|
|
IsActive *bool `json:"is_active"`
|
||
|
|
CreatedAt time.Time `json:"created_at"`
|
||
|
|
UpdatedAt time.Time `json:"updated_at"`
|
||
|
|
}
|
||
|
|
|