Files
dsc-api/src/modules/referrals/DTO/use-referral-code.dto.ts
T
2025-04-19 09:46:10 +03:30

12 lines
196 B
TypeScript
Executable File

import { IsNotEmpty, IsString } from "class-validator";
export class UseReferralCodeDto {
@IsNotEmpty()
@IsString()
referralCode: string;
@IsNotEmpty()
@IsString()
userId: string;
}