1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-07-12 15:48:31 +00:00

12 lines
153 B
Go
Raw Normal View History

package models
type Operation int32
const (
Operation_Equals Operation = 1 + iota
Operation_Greater
Operation_Less
Operation_In
Operation_NotIn
)