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

export class UnregisterScheduledJobDto {
  @IsString()
  @IsNotEmpty()
  jobId: string;
}
