12345678910111213141516171819202122232425 |
- //
- // KMLeftMethodMode.swift
- // PDF Reader Pro
- //
- // Created by lxy on 2022/11/17.
- //
- import Cocoa
- enum BotaType : Int {
- case None
- case Thumbnail
- case Outline
- case BookMark
- case Annotation
- case Search
- case From
- case Signature
- case snapshot
- }
- class KMLeftMethodMode: NSObject {
- var methodName : String = ""
- var methodType : BotaType = .None
- }
|