From 546ae76976b9a5a5e319e5a066b708cf294ce25e Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 18 Nov 2023 15:03:33 +0000 Subject: [PATCH] Add missing request object --- .../models/eft/inventory/IInventoryUnbindRequestData.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 project/src/models/eft/inventory/IInventoryUnbindRequestData.ts diff --git a/project/src/models/eft/inventory/IInventoryUnbindRequestData.ts b/project/src/models/eft/inventory/IInventoryUnbindRequestData.ts new file mode 100644 index 00000000..6376f14e --- /dev/null +++ b/project/src/models/eft/inventory/IInventoryUnbindRequestData.ts @@ -0,0 +1,8 @@ +import { IInventoryBaseActionRequestData } from "@spt-aki/models/eft/inventory/IInventoryBaseActionRequestData"; + +export interface IInventoryUnbindRequestData extends IInventoryBaseActionRequestData +{ + Action: "Unbind" + item: string + index: number +} \ No newline at end of file