ff-operation-server/src/command/operation/mission/missionVehicleCommand.ts

14 lines
297 B
TypeScript
Raw Normal View History

2025-03-09 09:54:56 +01:00
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;
}