2024-03-05 19:15:53 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type MagazinesResponse struct {
|
2025-01-17 07:51:18 +00:00
|
|
|
ID uint `json:"id"`
|
|
|
|
|
Title string `json:"title"`
|
|
|
|
|
Description string `json:"description"`
|
|
|
|
|
ThumbnailPath string `json:"thumbnailPath"`
|
|
|
|
|
ThumbnailUrl string `json:"thumbnailUrl"`
|
|
|
|
|
PageUrl string `json:"pageUrl"`
|
|
|
|
|
CreatedById *uint `json:"createdById"`
|
|
|
|
|
StatusId int `json:"statusId"`
|
|
|
|
|
IsPublish bool `json:"isPublish"`
|
|
|
|
|
PublishedAt time.Time `json:"publishedAt"`
|
|
|
|
|
IsActive bool `json:"isActive"`
|
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
|
|
|
}
|