# frozen_string_literal: true

# Tag
class Tag < ApplicationRecord
  belongs_to :tag_category
  has_many :respondent_tags, dependent: :destroy
  has_many :respondents, through: :respondent_tags
end
