mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-12-30 20:01:47 +08:00
13 lines
273 B
Go
13 lines
273 B
Go
package schemas
|
|
|
|
type ShareAccess struct {
|
|
Password string `json:"password" binding:"required"`
|
|
}
|
|
|
|
type ShareFileQuery struct {
|
|
Path string `form:"path"`
|
|
Sort string `form:"sort"`
|
|
Order string `form:"order"`
|
|
Limit int `form:"limit"`
|
|
Page int `form:"page"`
|
|
}
|