remove title

This commit is contained in:
2025-12-17 10:44:00 +03:30
parent 53c108734f
commit 6a2366e840
5 changed files with 3 additions and 18 deletions
@@ -8,10 +8,6 @@ export class CreateDeliveryDto {
@IsEnum(DeliveryMethodEnum)
method!: DeliveryMethodEnum;
@ApiProperty({ example: 'سرو در رستوران', description: 'Delivery method display name' })
@IsString()
title!: string;
@ApiProperty({ example: 5000, description: 'Delivery fee' })
@IsNumber()
@Min(0)