Files
dpage-api/src/modules/cart/dto/apply-coupon.dto.ts
T
2026-03-09 11:38:43 +03:30

10 lines
253 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString } from 'class-validator';
export class ApplyCouponDto {
@ApiProperty({ description: 'Coupon code', example: 'DISCOUNT10' })
@IsNotEmpty()
@IsString()
code!: string;
}