feat(interfaces): ✨ Db - Model
This commit is contained in:
12
src/interfaces/database/IDbModel.ts
Normal file
12
src/interfaces/database/IDbModel.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
export interface IDbModel {
|
||||||
|
id?: string;
|
||||||
|
slug_name: string;
|
||||||
|
display_name: string;
|
||||||
|
brand_id: string;
|
||||||
|
category_id: string;
|
||||||
|
image_bfile: BinaryType;
|
||||||
|
is_trending: boolean;
|
||||||
|
base_price: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default IDbModel;
|
||||||
Reference in New Issue
Block a user