12 lines
137 B
Go
Raw Normal View History

2024-10-23 17:46:15 +08:00
package interfaces
type Enum interface {
Value() int64
Code() string
Label() string
MarshalJSON() ([]byte, error)
All() []Enum
}