YetAnotherToDoList/graph/model/models_gen.go

14 lines
237 B
Go
Raw Normal View History

2023-08-19 23:47:36 +02:00
// 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"`
}