KMLeftMethodMode.swift 392 B

12345678910111213141516171819202122232425
  1. //
  2. // KMLeftMethodMode.swift
  3. // PDF Reader Pro
  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. case snapshot
  18. }
  19. class KMLeftMethodMode: NSObject {
  20. var methodName : String = ""
  21. var methodType : BotaType = .None
  22. }