18 lines
397 B
Go
18 lines
397 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type GalleryFilesResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
GalleryID uint `json:"gallery_id"`
|
||
|
|
Title *string `json:"title"`
|
||
|
|
ImagePath *string `json:"image_path"`
|
||
|
|
ImageUrl *string `json:"image_url"`
|
||
|
|
IsActive *bool `json:"is_active"`
|
||
|
|
CreatedAt time.Time `json:"created_at"`
|
||
|
|
UpdatedAt time.Time `json:"updated_at"`
|
||
|
|
}
|
||
|
|
|