mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
16 lines
278 B
Go
16 lines
278 B
Go
|
package domain
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type AssetInfo struct {
|
||
|
Bucket string
|
||
|
Key string
|
||
|
ETag string
|
||
|
Size int64
|
||
|
LastModified time.Time
|
||
|
Location string
|
||
|
VersionID string
|
||
|
Expiration time.Time
|
||
|
AutheticatedURL string
|
||
|
}
|