summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/labstack/echo/cookbook/twitter/model/post.go
blob: 7344296e4ea8b3314d9c819a45d78f46e5698568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package model

import "gopkg.in/mgo.v2/bson"

type (
	Post struct {
		ID      bson.ObjectId `json:"id" bson:"_id,omitempty"`
		To      string        `json:"to" bson:"to"`
		From    string        `json:"from" bson:"from"`
		Message string        `json:"message" bson:"message"`
	}
)