YetAnotherToDoList/graph/model/todo.go

9 lines
142 B
Go

package model
type Todo struct {
ID string `json:"id"`
Text string `json:"text"`
Done bool `json:"done"`
User *User `json:"user"`
}