mirror of
https://github.com/MichaelMure/git-bug.git
synced 2025-01-07 10:36:36 +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
|
||
|
}
|