aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/vektah/gqlgen/codegen/enum.go
blob: e62fd2b175ab2ccc4f4c0115fdfa04840b1fa622 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package codegen

type Enum struct {
	*NamedType

	Values []EnumValue
}

type EnumValue struct {
	Name        string
	Description string
}