mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
14 lines
243 B
Go
14 lines
243 B
Go
|
package model
|
||
|
|
||
|
import es_models "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
|
||
|
type Address struct {
|
||
|
es_models.ObjectRoot
|
||
|
|
||
|
Country string
|
||
|
Locality string
|
||
|
PostalCode string
|
||
|
Region string
|
||
|
StreetAddress string
|
||
|
}
|