mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:17:33 +00:00
9 lines
103 B
Go
9 lines
103 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type BucketInfo struct {
|
|
Name string
|
|
CreationDate time.Time
|
|
}
|