import { IsArray, IsString } from 'class-validator';

export class CreateNotificationDto {
  @IsString()
  groupId: string;
  
  @IsString()
  title: string;

  @IsString()
  content: string;

  @IsArray()
  userIds: string[];
}
