// // TYLoginRegionModel.h // TuyaSmartBaseKit // // Copyright (c) 2014-2021 Tuya Inc. (https://developer.tuya.com) #import NS_ASSUME_NONNULL_BEGIN @interface TYRegionModel : NSObject /// Region name. @property (nonatomic, strong) NSString *name; /// Region code. @property (nonatomic, strong) NSString *region; /// Default or not. @property (nonatomic, assign) BOOL isDefault; @end NS_ASSUME_NONNULL_END