mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-01-23 09:29:33 -06:00
11 lines
214 B
Go
11 lines
214 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
|
|
}
|