diff --git a/src/modules/shops/dto/update-shop-background.dto.ts b/src/modules/shops/dto/update-shop-background.dto.ts index 02a01e6..84496ad 100644 --- a/src/modules/shops/dto/update-shop-background.dto.ts +++ b/src/modules/shops/dto/update-shop-background.dto.ts @@ -10,7 +10,12 @@ export class UpdateShopBackgroundDto { @ApiPropertyOptional({ example: 'https://example.com/background.jpg', description: 'Background image URL' }) @IsOptional() @IsString() - bgUrl?: string; + bgUrl?: string; + + @ApiPropertyOptional({ example: '#000000', description: 'Menu color' }) + @IsOptional() + @IsString() + menuColor?: string; @ApiPropertyOptional({ example: '0.5', description: 'Background opacity' }) @IsOptional()