YOUPAILZLiveStartPKModel.h 728 B

1234567891011121314151617181920212223
  1. //
  2. // YOUPAILZLiveStartPKModel.h
  3. // TIANYAN
  4. //
  5. // Created by CY on 2021/5/31.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "YOUPAILCUserShowInfo.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZLiveStartPKModel : NSObject
  12. @property (nonatomic, strong) YOUPAILCUserShowInfo *youpaipto_user; // 被连麦者的用户信息
  13. @property (nonatomic, strong) YOUPAILCUserShowInfo *youpaipfrom_user; // 发起方用户信息
  14. @property (nonatomic, strong) NSString *youpaipto_roomid; // 被叫方的频道号
  15. @property (nonatomic, strong) NSString *youpaippk_id; // pk信息id
  16. @property (nonatomic, strong) NSString *youpaipfrom_roomid; // 发起方频道id
  17. @end
  18. NS_ASSUME_NONNULL_END