8 lines
203 B
Go
8 lines
203 B
Go
package common
|
|
|
|
// BulkCarCommands for sending commands to multiple cars
|
|
type BulkCarCommands struct {
|
|
VINs []string `json:"vins,omitempty" validate:"required,max=1000,dive,vin"`
|
|
RemoteCommandSource
|
|
}
|