2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 05:31:44 +08:00
Files
panel/pkg/types/backup.go
2024-10-15 03:14:38 +08:00

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