JYgRPCClient.h 441 B

123456789101112131415161718192021222324252627
  1. //
  2. // JYgRPCClient.h
  3. // JianYuIOS
  4. //
  5. // Created by apple on 2020/11/11.
  6. // Copyright © 2020 lixianglan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @class PushService;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface JYgRPCClient : NSObject
  13. +(JYgRPCClient *)shareInstance;//单例
  14. @property (nonatomic,copy)NSString *pushID;
  15. @property (nonatomic,retain)PushService *service;
  16. @end
  17. NS_ASSUME_NONNULL_END