import { ApiProperty } from '@nestjs/swagger';
import { IsString } from 'class-validator';

export class ClaimCouponDto {
  @ApiProperty({ example: 'ckxyz...' })
  @IsString()
  couponId!: string;
}
