mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
365 B
15 lines
365 B
package response
|
|
|
|
import "time"
|
|
|
|
type RecycleBinDTO struct {
|
|
Name string `json:"name"`
|
|
Size int `json:"size"`
|
|
Type string `json:"type"`
|
|
DeleteTime time.Time `json:"deleteTime"`
|
|
RName string `json:"rName"`
|
|
SourcePath string `json:"sourcePath"`
|
|
IsDir bool `json:"isDir"`
|
|
From string `json:"from"`
|
|
}
|