YMAudioVideoMatchingInfoPopupView.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // YMAudioVideoMatchingInfoPopupView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/18.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMBaseView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^AudioVideoMatchingButtonBlock)(BOOL isConfirm, NSString *matchId,NSString *matchUserId);
  11. @interface YMAudioVideoMatchingInfoPopupView : YMBaseView
  12. /** 按钮回调 isConfirm 确认按钮点击为YES 取消按钮为NO*/
  13. @property (nonatomic, copy) AudioVideoMatchingButtonBlock buttonBlock;
  14. /**
  15. 配置数据字典
  16. @param dic 字典
  17. */
  18. - (void)configutationWithDictionary:(NSDictionary*)dic;
  19. @end
  20. @interface YMAudioVideoMatchingInfoModel : NSObject
  21. @property (nonatomic, copy) NSString *avatar;
  22. @property (nonatomic, copy) NSString *from_uid;
  23. /// 网易云信功能Id
  24. @property (nonatomic, assign) NSInteger nim_id;
  25. @property (nonatomic, copy) NSString *match_id;
  26. @property (nonatomic, copy) NSString *nickname;
  27. @property (nonatomic, copy) NSString *price;
  28. @property (nonatomic, copy) NSString *status;
  29. @property (nonatomic, copy) NSString *type;
  30. @property (nonatomic, copy) NSString *uid;
  31. @end
  32. NS_ASSUME_NONNULL_END