import { IsString, IsOptional, IsInt, Min, IsNumber } from 'class-validator';

export class CreateModuleDto {
  @IsNumber()
  sectionId!: number;

  @IsString()
  slug!: string;

  @IsString()
  title!: string;

  @IsOptional()
  @IsString()
  description?: string;

  @IsOptional()
  @IsInt()
  @Min(0)
  orderIndex?: number;
}
