11 lines
136 B
Go
Raw Permalink Normal View History

2024-12-19 15:03:36 +08:00
package interfaces
type Enum interface {
Value() int64
Code() string
Label() string
MarshalJSON() ([]byte, error)
All() []Enum
}