CustomNotification.swift 655 B

123456789101112
  1. import Foundation
  2. extension Notification.Name {
  3. static let didPerformBatchInsert = Notification.Name("didPerformBatchInsert")
  4. static let didPerformBatchUpdate = Notification.Name("didPerformBatchUpdate")
  5. static let didPerformBatchDelete = Notification.Name("didPerformBatchDelete")
  6. static let didUpdateDetermination = Notification.Name("didUpdateDetermination")
  7. static let didUpdateOverrideConfiguration = Notification.Name("didUpdateOverrideConfiguration")
  8. static let didUpdateTempTargetConfiguration = Notification.Name("didUpdateTempTargetConfiguration")
  9. static let didUpdateCobIob = Notification.Name("didUpdateCobIob")
  10. }