13 lines
300 B
Go
13 lines
300 B
Go
package tysc
|
|
|
|
import (
|
|
"gopkg.in/mgo.v2/bson"
|
|
)
|
|
|
|
// Sport defines the data model for TYSC sports with id, and name.
|
|
type Sport struct {
|
|
ID bson.ObjectId `json:"_id" bson:"_id,omitempty"`
|
|
Name string `json:"name" bson:"name"`
|
|
Model string `json:"model" bson:"model,omitempty"`
|
|
}
|