Todo/types/todo.go

10 lines
114 B
Go
Raw Permalink Normal View History

2024-08-18 04:29:25 +00:00
package types
type Todo struct {
Id int64
Start int64
Due int64
Text string
Completed bool
}