mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-20 14:09:01 +08:00
13 lines
292 B
Go
13 lines
292 B
Go
package schemas
|
|
|
|
type ShareAccess struct {
|
|
Password string `json:"password" binding:"required"`
|
|
}
|
|
|
|
type ShareFileQuery struct {
|
|
ParentID string `form:"parentId"`
|
|
Sort string `form:"sort"`
|
|
Order string `form:"order"`
|
|
Limit int `form:"limit"`
|
|
Page int `form:"page"`
|
|
}
|