mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
14 lines
187 B
Go
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
|
|
}
|