BogoSetAccountModel.h 596 B

1234567891011121314151617181920212223242526
  1. //
  2. // BogoSetAccountModel.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/9/28.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoSetAccountModel : NSObject
  11. @property(nonatomic, strong) NSString *mobile;
  12. @property(nonatomic, strong) NSString *tel_code;
  13. @property(nonatomic, strong) NSString *QQ;
  14. @property(nonatomic, strong) NSString *wx;
  15. @property(nonatomic, strong) NSString *is_young;
  16. @property(nonatomic, strong) NSString *diamonds;
  17. @property(nonatomic, strong) NSString *ticket;
  18. @end
  19. NS_ASSUME_NONNULL_END