feat: attrs on product

This commit is contained in:
2024-05-10 16:48:48 +03:00
parent 09a6ed0c4f
commit 004ad9a562
3 changed files with 14 additions and 14 deletions

View File

@@ -7,6 +7,7 @@ import type { ClientDetailsSchema } from './ClientDetailsSchema';
export type ClientSchema = {
id: number;
name: string;
companyName: string;
barcodeTemplate?: (BarcodeTemplateSchema | null);
details?: (ClientDetailsSchema | null);
};