14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
|
export interface SyncMissionVehicleCommand {
|
||
|
vehicleId: string;
|
||
|
missionId: string;
|
||
|
driverId: string | null;
|
||
|
leaderId: string | null;
|
||
|
mileage_start: number | null;
|
||
|
mileage_end: number | null;
|
||
|
}
|
||
|
|
||
|
export interface DeleteMissionVehicleCommand {
|
||
|
vehicleId: string;
|
||
|
missionId: string;
|
||
|
}
|