Files
dsc-api/src/modules/reseller/dto/create-reseller-agent.dto.ts
T
2026-04-13 11:57:13 +03:30

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;
}