mirror of
https://github.com/MichaelMure/git-bug.git
synced 2025-01-05 17:33:12 +03:00
13 lines
138 B
Go
13 lines
138 B
Go
package codegen
|
|
|
|
type Enum struct {
|
|
*NamedType
|
|
|
|
Values []EnumValue
|
|
}
|
|
|
|
type EnumValue struct {
|
|
Name string
|
|
Description string
|
|
}
|