TapPropertiesHolder.h 427 B

1234567891011121314151617181920212223
  1. //
  2. // TapDBDynamicPropertiesProxy.h
  3. // TapDB
  4. //
  5. // Created by xe on 2021/4/13.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <TapCommonSDK/TapPropertiesDelegateProxy.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TapPropertiesHolder : NSObject
  11. @property NSMutableDictionary<NSString*,TapPropertiesDelegateProxy*> *dic;
  12. + (TapPropertiesHolder*)shareInstance;
  13. - (NSString*)getProperty:(NSString*)key;
  14. @end
  15. NS_ASSUME_NONNULL_END