alist/model/file.go

11 lines
201 B
Go
Raw Normal View History

2021-10-26 14:28:37 +00:00
package model
import "time"
type File struct {
Name string `json:"name"`
Size int64 `json:"size"`
Type int `json:"type"`
UpdatedAt *time.Time `json:"updated_at"`
}