mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
13 lines
323 B
Go
13 lines
323 B
Go
package storager
|
|
|
|
// FileMeta 文件元数据
|
|
type FileMeta struct {
|
|
Filename string // 文件名称
|
|
Size int64 // 文件大小
|
|
Kind string // 文件上传类型
|
|
MimeType string // 文件扩展类型
|
|
NaiveType string // NaiveUI类型
|
|
Ext string // 文件扩展名
|
|
Md5 string // 文件hash
|
|
}
|