Files
todo-en-go/models/todo.go
2019-04-17 12:36:31 -04:00

8 lines
74 B
Go

package models
type Todo struct {
Id int
Todo string
Done bool
}