class Communication::User < ApplicationRecord
  include Base::Communication::User

  enum associated_type: { employee: 1, contact: 2, student: 3 }

  belongs_to :associated, polymorphic: true, inverse_of: :communication_user, optional: true
end
