import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty } from 'class-validator';

export class UpdateOrderServiceManDto {
  @ApiProperty({ required: true, example: '' })
  @IsNotEmpty()
  orderId: number;

  @ApiProperty({ required: true, example: '' })
  @IsNotEmpty()
  serviceManId: string;
}
