mirror of
https://github.com/thewhitetulip/Tasks.git
synced 2025-04-28 13:48:51 +08:00
9 lines
97 B
Go
9 lines
97 B
Go
package types
|
|
|
|
type Task struct {
|
|
Id int
|
|
Title string
|
|
Content string
|
|
Created string
|
|
}
|