git-bug/vendor/github.com/vektah/gqlgen/codegen/enum.go
2018-08-14 14:48:41 +02:00

13 lines
138 B
Go

package codegen
type Enum struct {
*NamedType
Values []EnumValue
}
type EnumValue struct {
Name string
Description string
}