alist/model/file.go

13 lines
314 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"`
2021-10-30 16:36:17 +00:00
Driver string `json:"driver"`
2021-10-26 14:28:37 +00:00
UpdatedAt *time.Time `json:"updated_at"`
2021-10-29 16:35:29 +00:00
Thumbnail string `json:"thumbnail"`
2021-11-01 14:42:24 +00:00
Url string `json:"url"`
}