mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 05:40:26 +00:00
13 lines
282 B
Go
13 lines
282 B
Go
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"`
|
|
}
|
|
)
|