feat(interfaces): Db - Brand

This commit is contained in:
Mathis H (Avnyr) 2024-04-23 16:34:58 +02:00
parent 88d57f3b4c
commit 0697e330b4
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

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