class FamilyNotificationConfig < ApplicationRecord
  enum accounting_invoice: { none: 0, app: 1 }, _prefix: true
  enum accounting_payment: { none: 0, app: 1 }, _prefix: true
  enum service: { none: 0, app: 1, push: 2, both: 3 }, _prefix: true

  belongs_to :user
end
