1234567891011121314151617181920212223242526272829303132333435363738 |
- #import <Foundation/Foundation.h>
- #import "DCUniBasePlugin.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface DCUniModule : NSObject
- @property (nonatomic, strong)dispatch_queue_t uniExecuteQueue;
- @property (nonatomic, strong)NSThread * uniExecuteThread;
- @property (nonatomic, weak) DCUniSDKInstance * uniInstance;
- @end
- NS_ASSUME_NONNULL_END
|