mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-08-28 02:34:50 +08:00
13 lines
317 B
Go
13 lines
317 B
Go
package storager
|
|
|
|
// FileMeta 文件元数据
|
|
type FileMeta struct {
|
|
Filename string // 文件名称
|
|
Size int64 // 文件大小
|
|
Kind string // 文件所属分类
|
|
MetaType string // 文件类型
|
|
NaiveType string // NaiveUI类型
|
|
Ext string // 文件后缀名
|
|
Md5 string // 文件hash
|
|
}
|