WardPopViewModel.h 882 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // WardPopViewModel.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/1/31.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WardPopViewModel : NSObject
  11. //"uid": "164735",
  12. //"nick_name": "فارس......",
  13. //"head_image": "http://fw25live.oss-cn-beijing.aliyuncs.com/public/attachment/201808/164735/1535717138581.png",
  14. //"sex": "1",
  15. //"user_level": "37",
  16. //"type": "1",
  17. //"total_diamonds": "1"
  18. @property (nonatomic, copy) NSString *uid;
  19. @property (nonatomic, copy) NSString *nick_name;
  20. @property (nonatomic, copy) NSString *head_image;
  21. @property (nonatomic, copy) NSString *sex;
  22. @property (nonatomic, copy) NSString *user_level;
  23. @property (nonatomic, copy) NSString *type;
  24. @property (nonatomic, copy) NSString *total_diamonds;
  25. @property(nonatomic, strong) NSString *endtime;
  26. @end
  27. NS_ASSUME_NONNULL_END