identicond/vendor/gopkg.in/chi.v3/_examples/versions/data/article.go

10 lines
388 B
Go
Raw Normal View History

2017-12-29 22:10:53 +00:00
package data
// Article is runtime object, that's not meant to be sent via REST.
type Article struct {
ID int `db:"id" json:"id" xml:"id"`
Title string `db:"title" json:"title" xml:"title"`
Data []string `db:"data,stringarray" json:"data" xml:"data"`
CustomDataForAuthUsers string `db:"custom_data" json:"-" xml:"-"`
}