filer/controller/data_struct.go

10 lines
269 B
Go

package controller
type FileInfo struct {
Filename string `json:"filename,omitempty"`
Prefix string `json:"prefix,omitempty"`
CreatedAt string `json:"created_at,omitempty"`
Size int64 `json:"size,omitempty"`
IsDir bool `json:"is_dir,omitempty"`
}