diff --git a/src/interfaces/database/IDbBrand.ts b/src/interfaces/database/IDbBrand.ts new file mode 100644 index 0000000..bae7123 --- /dev/null +++ b/src/interfaces/database/IDbBrand.ts @@ -0,0 +1,8 @@ +export interface IDbBrand { + id?: string; + slug_name: string; + display_name: string; + image_blob: BinaryType; +} + +export default IDbBrand; \ No newline at end of file