mirror of
https://github.com/arnaucube/gogame.git
synced 2026-02-07 03:26:39 +01:00
11 lines
206 B
Go
11 lines
206 B
Go
package models
|
|
|
|
import "gopkg.in/mgo.v2/bson"
|
|
|
|
type Planet struct {
|
|
Id bson.ObjectId `json:"id", bson:"_id, omitempty"`
|
|
Size int64 // fields/slots
|
|
Name string
|
|
OwnerId bson.ObjectId
|
|
}
|