# frozen_string_literal: true

# Tag Category
class TagCategory < ApplicationRecord
  belongs_to :project, optional: true
  has_many :tags, dependent: :destroy
end
