mirror of
https://github.com/kataras/iris.git
synced 2026-02-08 11:46:01 +00:00
9 lines
174 B
Go
9 lines
174 B
Go
package todo
|
|
|
|
type Item struct {
|
|
SessionID string `json:"-"`
|
|
ID int64 `json:"id,omitempty"`
|
|
Title string `json:"title"`
|
|
Completed bool `json:"completed"`
|
|
}
|