2024-10-29 16:17:07 +08:00

12 lines
137 B
Go

package interfaces
type Enum interface {
Value() int64
Code() string
Label() string
MarshalJSON() ([]byte, error)
All() []Enum
}