mirror of
https://github.com/ferdzo/fs.git
synced 2026-04-05 07:46:25 +00:00
12 lines
316 B
Go
12 lines
316 B
Go
package models
|
|
|
|
type ObjectManifest struct {
|
|
Bucket string `json:"bucket"`
|
|
Key string `json:"key"`
|
|
Size int64 `json:"size"`
|
|
ContentType string `json:"content_type"`
|
|
ETag string `json:"etag"`
|
|
Chunks []string `json:"chunks"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
}
|