mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-01-14 04:49:46 -06:00
13 lines
261 B
Go
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
|
|
}
|