gotodo/internal/model.go

8 lines
92 B
Go

package model
type Todo struct {
Id int
Title string
Completed bool
}
var MaxId int = 0