teldrive/pkg/schemas/share.go

14 lines
273 B
Go
Raw Normal View History

2024-09-15 02:00:32 +08:00
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"`
2024-09-15 02:00:32 +08:00
}