CasaOS/model/zima.go

11 lines
177 B
Go
Raw Normal View History

2021-09-26 02:35:02 +00:00
package model
2022-01-26 02:44:55 +00:00
import "time"
2021-09-26 02:35:02 +00:00
type Path struct {
2022-01-26 02:44:55 +00:00
Name string `json:"name"`
Path string `json:"path"`
IsDir bool `json:"is_dir"`
Date time.Time `json:"date"`
2021-09-26 02:35:02 +00:00
}