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