import { IsString, IsNotEmpty, IsOptional } from "class-validator"; export class CreateDocumentRefDto { @IsString() @IsNotEmpty() courseId: string; @IsString() @IsNotEmpty() fileName: string; @IsString() @IsNotEmpty() fileUrl: string; @IsString() @IsOptional() status?: string; @IsString() @IsOptional() title?: string; @IsString() @IsOptional() description?: string; }