set delivery

This commit is contained in:
2025-12-03 09:05:35 +03:30
parent be823550ad
commit b67f00a919
4 changed files with 73 additions and 2 deletions
@@ -0,0 +1,10 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString } from 'class-validator';
export class SetDeliveryMethodDto {
@ApiProperty({ description: 'Delivery method ID', example: '01ARZ3NDEKTSV4RRFFQ69G5FAV' })
@IsNotEmpty()
@IsString()
deliveryMethodId!: string;
}