mirror of
https://github.com/MichaelMure/git-bug.git
synced 2025-01-05 17:33:12 +03:00
16 lines
180 B
Go
16 lines
180 B
Go
package codegen
|
|
|
|
type Model struct {
|
|
*NamedType
|
|
|
|
Fields []ModelField
|
|
}
|
|
|
|
type ModelField struct {
|
|
*Type
|
|
GQLName string
|
|
GoVarName string
|
|
GoFKName string
|
|
GoFKType string
|
|
}
|