mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +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
|
||
|
}
|