import { IsNotEmpty, IsString } from 'class-validator';

export class EncounterReq {
	@IsNotEmpty()
	@IsString()
	generatedNumber!: string;
}
