12 lines
337 B
Go
12 lines
337 B
Go
package file
|
|
|
|
type UploadDTO struct {
|
|
ObjectKey string `json:"object_key"`
|
|
URL string `json:"url"`
|
|
ThumbnailURL string `json:"thumbnail_url,omitempty"`
|
|
MediumURL string `json:"medium_url,omitempty"`
|
|
Filename string `json:"filename"`
|
|
ContentType string `json:"content_type"`
|
|
Size int64 `json:"size"`
|
|
}
|