mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
11 lines
256 B
Go
11 lines
256 B
Go
package model
|
|
|
|
// Todo represents the Todo model.
|
|
type Todo struct {
|
|
ID string `json:"id"`
|
|
UserID string `json:"user_id"`
|
|
Title string `json:"title"`
|
|
Body string `json:"body"`
|
|
CreatedAt int64 `json:"created_at"` // unix seconds.
|
|
}
|