This commit is contained in:
2025-11-23 01:07:49 +03:30
parent d9dde39a20
commit cc28b78596
5 changed files with 82 additions and 37 deletions
+10
View File
@@ -0,0 +1,10 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString } from 'class-validator';
export class SetAddressDto {
@ApiProperty({ description: 'User address ID', example: '01ARZ3NDEKTSV4RRFFQ69G5FAV' })
@IsNotEmpty()
@IsString()
addressId!: string;
}