9 lines
92 B
Go
9 lines
92 B
Go
|
package model
|
||
|
|
||
|
type Todo struct {
|
||
|
Id int
|
||
|
Title string
|
||
|
Completed bool
|
||
|
}
|
||
|
var MaxId int = 0
|