| 123456789101112131415161718192021 |
- //
- // BogoChoiceAreaModel.h
- // BuguLive
- //
- // Created by 宋晨光 on 2021/9/25.
- // Copyright © 2021 xfg. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface BogoChoiceAreaModel : NSObject
- @property(nonatomic, strong) NSString *id;
- @property(nonatomic, strong) NSString *country;
- @property(nonatomic, strong) NSString *area_code;
- @end
- NS_ASSUME_NONNULL_END
|