# frozen_string_literal: true

# app/models/manual_summary.rb
class ManualSummary < ApplicationRecord
  belongs_to :respondent_category

  has_attached_file :document

  validates_attachment :document, content_type: { content_type: "application/pdf" }
end
