mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-17 11:19:06 +00:00
14 lines
235 B
Go
14 lines
235 B
Go
![]() |
package address
|
||
|
|
||
|
import "github.com/caos/zitadel/internal/eventstore/v2"
|
||
|
|
||
|
type WriteModel struct {
|
||
|
eventstore.WriteModel
|
||
|
|
||
|
Country string
|
||
|
Locality string
|
||
|
PostalCode string
|
||
|
Region string
|
||
|
StreetAddress string
|
||
|
}
|