mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-15 01:05:06 +08:00
12 lines
268 B
Go
12 lines
268 B
Go
package request
|
|
|
|
type RecycleBinCreate struct {
|
|
SourcePath string `json:"sourcePath" validate:"required"`
|
|
}
|
|
|
|
type RecycleBinReduce struct {
|
|
From string `json:"from" validate:"required"`
|
|
RName string `json:"rName" validate:"required"`
|
|
Name string `json:"name"`
|
|
}
|