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

export class UpdateTranslationDto {
  @ApiProperty({ example: 'language ID' })
  @IsString()
  @IsNotEmpty()
  languageId: string;


  @ApiProperty({ example: 'Key ID' })
  @IsString()
  @IsNotEmpty()
  key_id: string;

  @ApiProperty({ example: 'लॉग इन' })
  @IsString()
  @IsNotEmpty()
  value: string;
}
