SettingManager.h 496 B

12345678910111213141516171819202122232425
  1. //
  2. // SettingManager.h
  3. // AJPushDemo
  4. //
  5. // Created by Black on 2021/2/4.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SettingManager : NSObject
  10. + (NSString *)getJPushKey;
  11. + (NSString *)getAppSpKey;
  12. + (NSString *)getAppSpSecretKey;
  13. + (NSString *)getAppSpUrl;
  14. + (void)setJPushKey:(NSString *)jpushKey;
  15. + (void)setAppSpKey:(NSString *)appSpKey;
  16. + (void)setAppSpUrl:(NSString *)appSpUrl;
  17. + (void)setAppSpSecretKey:(NSString *)secretKey;
  18. @end
  19. NS_ASSUME_NONNULL_END