mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-12 15:39:09 +08:00
743e7d0b59
Refs https://github.com/1Panel-dev/1Panel/issues/1137 Refs https://github.com/1Panel-dev/1Panel/issues/624
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"`
|
|
}
|