CNLiveCommuntyModule.h 660 Bytes
//
//  CNLiveCommuntyModule.h
//  CNLiveCommunitModule
//
//  Created by open on 2022/2/10.
// 主入口

#import <Foundation/Foundation.h>
#import "CNLiveCommunitModuleProtocol.h"
NS_ASSUME_NONNULL_BEGIN

@interface CNLiveCommuntyModule : NSObject

@property (nonatomic, strong) id<CNLiveCommunitModuleProtocol> protocol;

+ (instancetype)shareInstance;

/// 跳转社区组件的主界面(如果已经选择过了就会直接进去,没有则需要进行重新选择)
-(void)pushCommuntyHomeViewMethod;

/// 获取支付回调
/// @param paramDict 支付参数
-(void)pushCommuntyPayResultWithParamDict:(NSDictionary *)paramDict;

@end

NS_ASSUME_NONNULL_END