7 lines
160 B
Go
7 lines
160 B
Go
package ocss
|
|
|
|
type Car struct {
|
|
Model *string `json:"model,omitempty" bson:"model,omitempty"`
|
|
Brand *string `json:"brand,omitempty" bson:"brand,omitempty"`
|
|
}
|