1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-06 23:37:26 +02:00
Files
CasaOS/model/zima.go

14 lines
291 B
Go
Raw Normal View History

2021-09-26 10:35:02 +08:00
package model
2022-01-26 10:44:55 +08:00
import "time"
2021-09-26 10:35:02 +08:00
type Path struct {
2022-01-26 10:44:55 +08:00
Name string `json:"name"`
Path string `json:"path"`
IsDir bool `json:"is_dir"`
Date time.Time `json:"date"`
2022-02-28 14:14:39 +08:00
Size int64 `json:"size"`
Type string `json:"type,omitempty"`
Label string `json:"label,omitempty"`
2021-09-26 10:35:02 +08:00
}