mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-14 23:04:16 +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
|
||
|
|
}
|