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

  belongs_to :user
end
