KMRecommondPopWindow.h 407 B

123456789101112131415161718192021
  1. //
  2. // KMRecommondPopWindow.h
  3. // PDF Reader Pro Edition
  4. //
  5. // Created by Niehaoyu on 2023/07/12.
  6. //
  7. #import <Cocoa/Cocoa.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface KMRecommondPopWindow : NSWindowController
  10. @property (nonatomic, copy) void(^closeHandle)(KMRecommondPopWindow *popWindow);
  11. @property (nonatomic, strong) id recommondInfo;
  12. + (KMRecommondPopWindow *)defaultWindow;
  13. @end
  14. NS_ASSUME_NONNULL_END