mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-15 09:47:09 +08:00
18 lines
411 B
Go
18 lines
411 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Object struct {
|
|
Name string `bson:"name"`
|
|
UserID string `bson:"user_id"`
|
|
Hash string `bson:"hash"`
|
|
Engine string `bson:"engine"`
|
|
Key string `bson:"key"`
|
|
Size int64 `bson:"size"`
|
|
ContentType string `bson:"content_type"`
|
|
Group string `bson:"group"`
|
|
CreateTime time.Time `bson:"create_time"`
|
|
}
|