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