todo/internal/models/todo.go

8 lines
71 B
Go

package models
type Todo struct {
Id int64
Name string
Done bool
}