8 lines
81 B
Go
8 lines
81 B
Go
|
package types
|
||
|
|
||
|
type Task struct {
|
||
|
Id int
|
||
|
Title string
|
||
|
Content string
|
||
|
}
|