Files
hfb_sys/backend/internal/modules/file/dto.go
T
2026-05-22 18:50:32 +08:00

10 lines
227 B
Go

package file
type UploadDTO struct {
ObjectKey string `json:"object_key"`
URL string `json:"url"`
Filename string `json:"filename"`
ContentType string `json:"content_type"`
Size int64 `json:"size"`
}