import { IsNotEmpty, IsString } from 'class-validator'; export class CreateWahlDto { @IsString() @IsNotEmpty() kcId!: string; @IsString() @IsNotEmpty() name!: string; @IsString() @IsNotEmpty() datumsSchluessel!: string; @IsString() @IsNotEmpty() teil!: string; }