mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:17:33 +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
|
|
)
|