BogoChoiceAreaModel.h 409 B

123456789101112131415161718192021
  1. //
  2. // BogoChoiceAreaModel.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/9/25.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoChoiceAreaModel : NSObject
  11. @property(nonatomic, strong) NSString *id;
  12. @property(nonatomic, strong) NSString *country;
  13. @property(nonatomic, strong) NSString *area_code;
  14. @end
  15. NS_ASSUME_NONNULL_END