From 900c2902d52c1b3503790a31beba2675bc92de7e Mon Sep 17 00:00:00 2001 From: Chomp Date: Thu, 26 Dec 2024 23:20:15 +0000 Subject: [PATCH] Add new type --- .../src/models/eft/common/tables/ICustomisationStorage.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 project/src/models/eft/common/tables/ICustomisationStorage.ts diff --git a/project/src/models/eft/common/tables/ICustomisationStorage.ts b/project/src/models/eft/common/tables/ICustomisationStorage.ts new file mode 100644 index 00000000..1ef230fa --- /dev/null +++ b/project/src/models/eft/common/tables/ICustomisationStorage.ts @@ -0,0 +1,5 @@ +export interface ICustomisationStorage { + id: string; + source: string; + type: string; +}