mirror of
https://git.vectorsigma.ru/public/CasaOS.git
synced 2026-07-29 00:37:38 +00:00
11 lines
177 B
Go
11 lines
177 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"`
|
|
}
|