12 lines
242 B
Go
12 lines
242 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Task struct {
|
|
Id int `json:"id"`
|
|
Text string `json:"text"`
|
|
Completed bool `json:"completed"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|