RoomVoiceModel.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // RoomVoiceModel.h
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/8/7.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RoomWheatTypeModel : NSObject
  11. // "wheat_id":"上麦位置",
  12. // "type":'1设置申请上麦0直接上麦'
  13. @property(nonatomic, copy) NSString *wheat_id;
  14. @property(nonatomic, copy) NSString *type;
  15. @end
  16. @interface RoomVoiceModel : NSObject
  17. //user_nickname":"开启语音房间人昵称",
  18. //"avatar":"开启语音房间人头像",
  19. //"title":"开启语音房间标题",
  20. //"id":'房间id',
  21. //"group_id":'群组id',
  22. //"user_id":'用户id',
  23. //'voice_bg_image':'房间背景图片路径',
  24. //'voice_status':'0无1密码房间',
  25. //'voice_psd':'密码',
  26. //'voice_avatar':'房间缩略图',
  27. //'announcement':'房间公告',
  28. //'voice_type':'语音房间类型id',
  29. @property(nonatomic, copy) NSString *user_nickname;
  30. @property(nonatomic, copy) NSString *user_id;
  31. @property(nonatomic, copy) NSString *avatar;
  32. @property(nonatomic, copy) NSString *title;
  33. @property(nonatomic, copy) NSString *id;
  34. @property(nonatomic, copy) NSString *group_id;
  35. @property(nonatomic, copy) NSString *voice_bg_image;
  36. @property(nonatomic, copy) NSString *voice_status;
  37. @property(nonatomic, copy) NSString *voice_psd;
  38. @property(nonatomic, copy) NSString *voice_avatar;
  39. //@property(nonatomic, strong) NSArray *wheat_type;
  40. @property(nonatomic, copy) NSString *voice_type;
  41. @property(nonatomic, copy) NSString *announcement;
  42. @property(nonatomic, copy) NSString *is_focus;
  43. @property(nonatomic, copy) NSString *luck;
  44. @property(nonatomic, copy) NSString *type;
  45. @property(nonatomic, copy) NSString *live_in;
  46. @property(nonatomic, copy) NSString *online_number;
  47. @property(nonatomic, copy) NSString *online_count;
  48. @property(nonatomic, copy) NSString *voice_label;
  49. @property(nonatomic, copy) NSString *host_more_voice_ratio;
  50. @property(nonatomic, strong) NSString *name;
  51. @property(nonatomic, strong) NSString *watch_number;
  52. @property(nonatomic, assign) BOOL is_collect;//收藏
  53. @property(nonatomic, copy) NSString *room_type;//1交友 2派单
  54. @end
  55. NS_ASSUME_NONNULL_END