12 lines
137 B
Go
Raw Permalink Normal View History

2024-07-11 16:37:26 +08:00
package interfaces
type Enum interface {
Value() int64
Code() string
Label() string
MarshalJSON() ([]byte, error)
All() []Enum
}