feat(interfaces): Db - Brand

This commit is contained in:
2024-04-23 16:34:58 +02:00
parent 88d57f3b4c
commit 0697e330b4

View File

@@ -0,0 +1,8 @@
export interface IDbBrand {
id?: string;
slug_name: string;
display_name: string;
image_blob: BinaryType;
}
export default IDbBrand;