CustomNotification.swift 297 B

12345678
  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. }