洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
671 B

7 months ago
  1. //
  2. // DTFBeanService.h
  3. // DTFUtility
  4. //
  5. // Created by mengbingchuan on 2023/6/8.
  6. // Copyright © 2023 com.alipay.iphoneclient.zoloz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. //#import "DTFRPCProxyProtocol.h"
  10. #import "DTFFaceIdentityProtocol.h"
  11. #import "DTFNFCIdentityProtocol.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface DTFBeanService : NSObject
  14. //@property(nonatomic, strong) id<DTFRPCProxyProtocol> rpcProxy;
  15. @property(nonatomic, strong) id<DTFFaceIdentityProtocol> faceIdentity;
  16. @property(nonatomic, strong) id<DTFNFCIdentityProtocol> nfcIdentity;
  17. + (DTFBeanService *)sharedInstance;
  18. - (void)setup;
  19. - (void)setupNFC;
  20. @end
  21. NS_ASSUME_NONNULL_END