feat(interfaces): ✨ Db - Model
This commit is contained in:
parent
88113f1035
commit
032ecc764a
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;
|
Loading…
x
Reference in New Issue
Block a user