BogoInviteWithDrawResponseModel.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // BogoInviteWithDrawResponseModel.h
  3. //
  4. //
  5. // Created by JSONConverter on 2021/10/09.
  6. // Copyright © 2021年 JSONConverter. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class BogoInviteWithDrawResponseModelList;
  10. @class BogoInviteWithDrawResponseModelData;
  11. @interface BogoInviteWithDrawResponseModel: NSObject
  12. @property (nonatomic, strong) BogoInviteWithDrawResponseModelData *data;
  13. @property (nonatomic, copy) NSString *error;
  14. @property (nonatomic, strong) NSArray<BogoInviteWithDrawResponseModelList *> *list;
  15. @property (nonatomic, assign) NSInteger status;
  16. @end
  17. @interface BogoInviteWithDrawResponseModelList: NSObject
  18. @property (nonatomic, copy) NSString *id;
  19. @property (nonatomic, copy) NSString *invitation_coin;
  20. @property (nonatomic, copy) NSString *money;
  21. @property (nonatomic, assign) NSInteger is_only;
  22. @property (nonatomic, copy) NSString *sort;
  23. @property(nonatomic, assign) BOOL selected;
  24. @end
  25. @interface BogoInviteWithDrawResponseModelData: NSObject
  26. @property (nonatomic, copy) NSString *alipay_account;
  27. @property (nonatomic, copy) NSString *alipay_name;
  28. @property (nonatomic, copy) NSString *invite_coin;
  29. @end