Files
Gokapi/internal/models/FileUpload.go
2021-05-10 14:37:29 +02:00

13 lines
261 B
Go

package models
// UploadRequest is used to set an upload request
type UploadRequest struct {
AllowedDownloads int
Expiry int
ExpiryTimestamp int64
Password string
ExternalUrl string
MaxMemory int
DataDir string
}