12 lines
196 B
TypeScript
Executable File
12 lines
196 B
TypeScript
Executable File
import { IsNotEmpty, IsString } from "class-validator";
|
|
|
|
export class UseReferralCodeDto {
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
referralCode: string;
|
|
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
userId: string;
|
|
}
|