KMBatchSecurityManager.swift 341 B

12345678910111213141516171819202122
  1. //
  2. // File.swift
  3. // PDF Master
  4. //
  5. // Created by liujiajie on 2023/12/29.
  6. //
  7. import Foundation
  8. enum KMSecurityType: Int {
  9. case addSecurity = 0
  10. case removeSecurity
  11. }
  12. class KMBatchSecurityManager: NSObject{
  13. static let defaultManager = KMBatchSecurityManager()
  14. var securityType: KMSecurityType = .addSecurity
  15. }