enum.go

 1package codegen
 2
 3type Enum struct {
 4	*NamedType
 5	Description string
 6	Values      []EnumValue
 7}
 8
 9type EnumValue struct {
10	Name        string
11	Description string
12}