This commit is contained in:
2025-12-17 09:55:25 +03:30
parent a2ef48e1c9
commit abc9185285
5 changed files with 15 additions and 15 deletions
@@ -8,9 +8,9 @@ export class CreateDeliveryDto {
@IsEnum(DeliveryMethodEnum)
method!: DeliveryMethodEnum;
@ApiProperty({ example: 'سرو در رستوران', description: 'Delivery method title' })
@ApiProperty({ example: 'سرو در رستوران', description: 'Delivery method display name' })
@IsString()
title!: string;
name!: string;
@ApiProperty({ example: 5000, description: 'Delivery fee' })
@IsNumber()