mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 12:46:17 +08:00
11 lines
201 B
Go
11 lines
201 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"`
|
||
|
}
|