GameDistributionModel.h 784 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // GameDistributionModel.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/4/8.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface GameUserModel :NSObject
  10. @property (nonatomic, copy) NSString * userID;
  11. @property (nonatomic, copy) NSString * nick_name;
  12. @property (nonatomic, copy) NSString * head_image;
  13. @property (nonatomic, copy) NSString * sum;
  14. @property (nonatomic, assign) BOOL isParent;
  15. @end
  16. @interface PageModel : NSObject
  17. @property (nonatomic, assign) int has_next;
  18. @property (nonatomic, assign) int page;
  19. @end
  20. @interface GameDistributionModel : NSObject
  21. @property (nonatomic, strong) GameUserModel * parent;
  22. @property (nonatomic, strong) NSMutableArray * list;
  23. @property (nonatomic, strong) PageModel * page;
  24. @end