From 0697e330b4e4ba4902698cc5c5db105e12bb1ed2 Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 23 Apr 2024 16:34:58 +0200 Subject: [PATCH] feat(interfaces): :sparkles: Db - Brand --- src/interfaces/database/IDbBrand.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/interfaces/database/IDbBrand.ts diff --git a/src/interfaces/database/IDbBrand.ts b/src/interfaces/database/IDbBrand.ts new file mode 100644 index 0000000..bae7123 --- /dev/null +++ b/src/interfaces/database/IDbBrand.ts @@ -0,0 +1,8 @@ +export interface IDbBrand { + id?: string; + slug_name: string; + display_name: string; + image_blob: BinaryType; +} + +export default IDbBrand; \ No newline at end of file