12 lines
232 B
Go
12 lines
232 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
// Todo is the core domain entity.
|
||
|
|
type Todo struct {
|
||
|
|
ID int64 `json:"id"`
|
||
|
|
Title string `json:"title"`
|
||
|
|
Done bool `json:"done"`
|
||
|
|
CreatedAt time.Time `json:"created_at"`
|
||
|
|
}
|