5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-07 10:16:16 +00:00

13 lines
282 B
Go
Raw Normal View History

2017-02-18 23:00:46 +01:00
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"`
}
)