mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 05:31:44 +08:00
11 lines
177 B
Go
11 lines
177 B
Go
package types
|
|
|
|
import "time"
|
|
|
|
type BackupFile struct {
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
Size string `json:"size"`
|
|
Time time.Time `json:"time"`
|
|
}
|