10 lines
209 B
TypeScript
Executable File
10 lines
209 B
TypeScript
Executable File
import { ApiProperty } from "@nestjs/swagger";
|
|
import { IsNotEmpty, IsString } from "class-validator";
|
|
|
|
export class CreateResellerAgentDto {
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
@ApiProperty()
|
|
userId: string;
|
|
}
|