export type ProductCombinationActiveDto = { productId: string; verticalId: string; combinationId: string; active?: boolean; activeByShop?: ProductDataByShopDto[]; }; type ProductDataByShopDto = { shopId: string; active: boolean; }; export {};