feat(interfaces): Db - Category

This commit is contained in:
2024-04-23 16:18:26 +02:00
parent 2a33f45257
commit 88d57f3b4c

View File

@@ -0,0 +1,7 @@
export interface IDbCategory {
id?: string;
slug_name: string;
display_name: string
}
export default IDbCategory;