teldrive/pkg/schemas/share.go
2024-09-15 10:03:55 +05:30

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"`
}