14 lines
237 B
Go
14 lines
237 B
Go
|
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
|
||
|
|
||
|
package model
|
||
|
|
||
|
type NewTodo struct {
|
||
|
Text string `json:"text"`
|
||
|
UserID string `json:"userId"`
|
||
|
}
|
||
|
|
||
|
type User struct {
|
||
|
ID string `json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
}
|