mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 14:57:28 +00:00
14 lines
189 B
Go
14 lines
189 B
Go
![]() |
package model
|
||
|
|
||
|
type ProjectOrgSearchResponse struct {
|
||
|
Offset uint64
|
||
|
Limit uint64
|
||
|
TotalResult uint64
|
||
|
Result []*Org
|
||
|
}
|
||
|
|
||
|
type Org struct {
|
||
|
OrgID string
|
||
|
OrgName string
|
||
|
}
|