class UserContact < ApplicationRecord
  include Base::UserContact

  belongs_to :user, inverse_of: :user_contacts
  belongs_to :contact, inverse_of: :user_contacts, foreign_key: :ContactID
end
