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

export class SendNotificationResultDTO {}

export class SendNotificationDTO {
  @ApiProperty({})
  @IsInt()
  toUserId: number;

  @ApiProperty({})
  @IsString()
  text: string;
}
