MGLiveWishModel.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // MGLiveWishModel.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/12/5.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class MGLiveWishUserModel;
  10. typedef enum : NSUInteger {
  11. MGWISHTYPE_ADD,//添加礼物和数量
  12. MGWISHTYPE_ADD_GIFT,//添加礼物
  13. MGWISHTYPE_LIST,//心愿单列表
  14. MGWISHTYPE_GENERATE,//生成心愿
  15. } MGADD_WISH;
  16. NS_ASSUME_NONNULL_BEGIN
  17. @interface MGLiveWishModel : NSObject
  18. //
  19. @property(nonatomic, strong) NSString *g_id;//礼物id
  20. //心愿单列表
  21. @property(nonatomic, strong) NSString *g_name;
  22. @property(nonatomic, strong) NSString *g_icon;
  23. @property(nonatomic, strong) NSString *g_now_num;//现在已经贡献的礼物数量
  24. //添加礼物和数量
  25. @property(nonatomic, strong) NSString *g_num;//总共的礼物数量
  26. @property(nonatomic, strong) NSString *txt;//描述
  27. //礼物列表model
  28. @property(nonatomic, strong) NSString *id;
  29. @property(nonatomic, strong) NSString *name;
  30. @property(nonatomic, strong) NSString *score;
  31. @property(nonatomic, strong) NSString *diamonds;
  32. @property(nonatomic, strong) NSString *icon;
  33. @property(nonatomic, strong) NSString *ticket;
  34. @property(nonatomic, strong) NSString *is_much;
  35. @property(nonatomic, strong) NSString *sort;
  36. @property(nonatomic, strong) NSArray *top_user;
  37. @end
  38. @interface MGLiveWishUserModel : NSObject
  39. @property(nonatomic, strong) NSString *head_image;
  40. @property(nonatomic, strong) NSString *nick_name;
  41. @property(nonatomic, strong) NSString *gift_num;
  42. @end
  43. NS_ASSUME_NONNULL_END