From 88d57f3b4c911d9c2d9ac3be57f45e7f13a70d03 Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 23 Apr 2024 16:18:26 +0200 Subject: [PATCH] feat(interfaces): :sparkles: Db - Category --- src/interfaces/database/IDbCategory.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/interfaces/database/IDbCategory.ts diff --git a/src/interfaces/database/IDbCategory.ts b/src/interfaces/database/IDbCategory.ts new file mode 100644 index 0000000..cc06170 --- /dev/null +++ b/src/interfaces/database/IDbCategory.ts @@ -0,0 +1,7 @@ +export interface IDbCategory { + id?: string; + slug_name: string; + display_name: string +} + +export default IDbCategory; \ No newline at end of file