them valkue

This commit is contained in:
morteza-mortezai
2025-11-29 13:14:03 +03:30
parent 754496f259
commit 488807278e
3 changed files with 33 additions and 42 deletions
+20
View File
@@ -83,6 +83,22 @@ class SaleFormatDTO {
//#################################
class ThemeValueDTO {
@Expose()
_id: string;
@Expose()
theme: string;
@Expose()
name?: string;
@Expose()
value: string | number;
}
//#################################
export class ProductDetailVariantDTO {
@Expose()
_id: string;
@@ -136,6 +152,10 @@ export class ProductDetailVariantDTO {
@Expose()
@Type(() => Size_MeterageDTO)
meterage?: Size_MeterageDTO;
@Expose()
@Type(() => ThemeValueDTO)
themeValue?: ThemeValueDTO;
}
//#################################