class Notification::PanJob
  include Sidekiq::Worker

  def perform(user_ids)
    User.where(id: user_ids).each(&:send_unread_pan_count)
  end
end
