mirror of
https://git.vectorsigma.ru/public/CasaOS.git
synced 2026-07-28 22:27:36 +00:00
12 lines
208 B
Go
12 lines
208 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Path struct {
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
IsDir bool `json:"is_dir"`
|
|
Date time.Time `json:"date"`
|
|
Size int64 `json:"size"`
|
|
}
|