scope: services, interfaces subject: Apply code formatting - Correct indentation and formatting to match code style standards in multiple 'interfaces' and 'services' files. - Also ensure lines at the end of the files. Signed-off-by: Mathis <yidhra@tuta.io>
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
export interface IDbModel {
|
|
id?: string;
|
|
slug_name: string;
|
|
display_name: string;
|
|
brand_id: string;
|
|
category_id: string;
|
|
image_blob: BinaryType;
|
|
is_trending: boolean;
|
|
base_price: number;
|
|
}
|
|
|
|
export default IDbModel;
|