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