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

export class SamtDto {
  @ApiProperty()
  @IsNotEmpty({ message: 'تمامی موارد اجباری است' })
  mobile: string;

  @ApiProperty()
  @IsNotEmpty({ message: 'تمامی موارد اجباری است' })
  nationalCode: string;

  @ApiProperty()
  @IsNotEmpty({ message: 'تمامی موارد اجباری است' })
  vinCode: string;

  @ApiProperty()
  @IsNotEmpty({ message: 'تمامی موارد اجباری است' })
  engineCode: string;

  @ApiProperty()
  @IsNotEmpty({ message: 'تمامی موارد اجباری است' })
  price: number;

  @ApiProperty()
  @IsNotEmpty({ message: 'تمامی موارد اجباری است' })
  litr: number;
}
