# frozen_string_literal: true

# Respondent Tag Join Table
class RespondentTag < ApplicationRecord
  belongs_to :respondent
  belongs_to :tag
end
