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

export class UpdateContactDto {
  @ApiProperty({ example: true })
  @IsNotEmpty()
  isReaded: boolean;
}
