# -*- encoding : utf-8 -*-
class SurveySet < ActiveRecord::Base
  belongs_to :survey_type
  has_many :question_sets
  attr_accessible :survey_type_id, :question_sets_attributes, :answer_sets
  
  accepts_nested_attributes_for :question_sets
end