12 lines
137 B
Go
Raw Normal View History

2024-04-15 18:02:54 +08:00
package interfaces
type Enum interface {
Value() int64
Code() string
Label() string
MarshalJSON() ([]byte, error)
All() []Enum
}