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
30 lines
671 B
//
|
|
// DTFBeanService.h
|
|
// DTFUtility
|
|
//
|
|
// Created by mengbingchuan on 2023/6/8.
|
|
// Copyright © 2023 com.alipay.iphoneclient.zoloz. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
//#import "DTFRPCProxyProtocol.h"
|
|
#import "DTFFaceIdentityProtocol.h"
|
|
#import "DTFNFCIdentityProtocol.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DTFBeanService : NSObject
|
|
|
|
//@property(nonatomic, strong) id<DTFRPCProxyProtocol> rpcProxy;
|
|
@property(nonatomic, strong) id<DTFFaceIdentityProtocol> faceIdentity;
|
|
@property(nonatomic, strong) id<DTFNFCIdentityProtocol> nfcIdentity;
|
|
|
|
+ (DTFBeanService *)sharedInstance;
|
|
|
|
- (void)setup;
|
|
|
|
- (void)setupNFC;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|