123456789101112131415161718192021222324252627 |
- //
- // JYgRPCClient.h
- // JianYuIOS
- //
- // Created by apple on 2020/11/11.
- // Copyright © 2020 lixianglan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @class PushService;
- NS_ASSUME_NONNULL_BEGIN
- @interface JYgRPCClient : NSObject
- +(JYgRPCClient *)shareInstance;//单例
- @property (nonatomic,copy)NSString *pushID;
- @property (nonatomic,retain)PushService *service;
- @end
- NS_ASSUME_NONNULL_END
|