123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // YMAudioVideoMatchingInfoPopupView.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/18.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMBaseView.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^AudioVideoMatchingButtonBlock)(BOOL isConfirm, NSString *matchId,NSString *matchUserId);
- @interface YMAudioVideoMatchingInfoPopupView : YMBaseView
- /** 按钮回调 isConfirm 确认按钮点击为YES 取消按钮为NO*/
- @property (nonatomic, copy) AudioVideoMatchingButtonBlock buttonBlock;
- /**
- 配置数据字典
- @param dic 字典
- */
- - (void)configutationWithDictionary:(NSDictionary*)dic;
- @end
- @interface YMAudioVideoMatchingInfoModel : NSObject
- @property (nonatomic, copy) NSString *avatar;
- @property (nonatomic, copy) NSString *from_uid;
- /// 网易云信功能Id
- @property (nonatomic, assign) NSInteger nim_id;
- @property (nonatomic, copy) NSString *match_id;
- @property (nonatomic, copy) NSString *nickname;
- @property (nonatomic, copy) NSString *price;
- @property (nonatomic, copy) NSString *status;
- @property (nonatomic, copy) NSString *type;
- @property (nonatomic, copy) NSString *uid;
- @end
- NS_ASSUME_NONNULL_END
|