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