iris/_examples/auth/jwt/tutorial/domain/model/todo.go

11 lines
256 B
Go
Raw Normal View History

2020-11-04 20:12:13 +01:00
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.
}