import { IsInt, IsOptional } from 'class-validator';

export class ReadAllSystemNotificationDto {
  @IsInt()
  @IsOptional()
  receiverUserId?: number;

  @IsInt()
  @IsOptional()
  receiverStakeholderId?: number;
}
