mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
9 lines
103 B
Go
9 lines
103 B
Go
|
package domain
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type BucketInfo struct {
|
||
|
Name string
|
||
|
CreationDate time.Time
|
||
|
}
|