mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-15 19:18:34 +00:00
10 lines
222 B
Go
10 lines
222 B
Go
![]() |
package domain
|
||
|
|
||
|
//go:generate enumer -type CountParentType -transform lower -trimprefix CountParentType -sql
|
||
|
type CountParentType int
|
||
|
|
||
|
const (
|
||
|
CountParentTypeInstance CountParentType = iota
|
||
|
CountParentTypeOrganization
|
||
|
)
|