// // ASMineAddressModel.m // Asteria // // Created by iOS on 2024/5/7. // #import "ASMineAddressModel.h" @implementation KWCountryAddressModel + (NSDictionary *)mj_replacedKeyFromPropertyName { return @{ @"country_id": @"id", }; } + (NSDictionary *)mj_objectClassInArray{ return @{ @"available_regions" : [KWProvinceAddressModel class] }; } @end @implementation KWProvinceAddressModel + (NSDictionary *)mj_replacedKeyFromPropertyName { return @{ @"Id": @"id", }; } @end