feat(interfaces): Db - Category

This commit is contained in:
Mathis H (Avnyr) 2024-04-23 16:18:26 +02:00
parent 2a33f45257
commit 88d57f3b4c
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

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