11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
|
export interface SyncMissionEquipmentCommand {
|
||
|
equipmentId: string;
|
||
|
missionId: string;
|
||
|
note: string;
|
||
|
}
|
||
|
|
||
|
export interface DeleteMissionEquipmentCommand {
|
||
|
equipmentId: string;
|
||
|
missionId: string;
|
||
|
}
|