1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 02:42:48 +00:00
Files
mywebsite/model/person.go
2016-05-16 03:34:26 -05:00

14 lines
187 B
Go

package model
import (
"gopkg.in/mgo.v2/bson"
"time"
)
type Person struct {
ID bson.ObjectId `bson:"_id,omitempty"`
LastName string
FirstName string
Timestamp time.Time
}