mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-01-26 11:08:31 -06:00
17 lines
384 B
Go
17 lines
384 B
Go
package models
|
|
|
|
// UploadRequest is used to set an upload request
|
|
type UploadRequest struct {
|
|
UserId int
|
|
AllowedDownloads int
|
|
Expiry int
|
|
MaxMemory int
|
|
ExpiryTimestamp int64
|
|
RealSize int64
|
|
UnlimitedDownload bool
|
|
UnlimitedTime bool
|
|
IsEndToEndEncrypted bool
|
|
Password string
|
|
ExternalUrl string
|
|
}
|