12 lines
137 B
Go
12 lines
137 B
Go
package interfaces
|
|
|
|
type Enum interface {
|
|
Value() int64
|
|
Code() string
|
|
Label() string
|
|
|
|
MarshalJSON() ([]byte, error)
|
|
|
|
All() []Enum
|
|
}
|