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