import { IsOptional } from 'class-validator';
import { ApiBearerAuth, ApiProperty } from '@nestjs/swagger';

@ApiBearerAuth()
export class CreateNotificationDto {
  @ApiProperty()
  title: string;
  @ApiProperty()
  content: string;
  @ApiProperty()
  @IsOptional()
  file_id: string;
  @ApiProperty()
  receiver_id: string;
}
