KMLeftMethodMode.swift 370 B

123456789101112131415161718192021222324
  1. //
  2. // KMLeftMethodMode.swift
  3. // PDF Master
  4. //
  5. // Created by lxy on 2022/11/17.
  6. //
  7. import Cocoa
  8. enum BotaType : Int {
  9. case None
  10. case Thumbnail
  11. case Outline
  12. case BookMark
  13. case Annotation
  14. case Search
  15. case From
  16. case Signature
  17. }
  18. class KMLeftMethodMode: NSObject {
  19. var methodName : String = ""
  20. var methodType : BotaType = .None
  21. }