alist/model/file.go
2021-10-30 00:35:29 +08:00

12 lines
242 B
Go

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"`
Thumbnail string `json:"thumbnail"`
}