17 lines
515 B
Go
17 lines
515 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type MagazineFilesResponse struct {
|
|
ID uint `json:"id"`
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
MagazineId int `json:"magazine_id"`
|
|
DownloadCount int `json:"download_count"`
|
|
StatusId int `json:"status_id"`
|
|
IsPublish bool `json:"is_publish"`
|
|
PublishedAt time.Time `json:"published_at"`
|
|
IsActive bool `json:"is_active"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
} |