mirror of
https://github.com/AlistGo/alist.git
synced 2025-05-18 20:28:40 +08:00
13 lines
314 B
Go
13 lines
314 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type File struct {
|
|
Name string `json:"name"`
|
|
Size int64 `json:"size"`
|
|
Type int `json:"type"`
|
|
Driver string `json:"driver"`
|
|
UpdatedAt *time.Time `json:"updated_at"`
|
|
Thumbnail string `json:"thumbnail"`
|
|
Url string `json:"url"`
|
|
} |