// // ASUserModel.m // Asteria // // Created by iOS on 2023/11/27. // #import "ASUserModel.h" @implementation ASUserModel + (NSDictionary *)mj_replacedKeyFromPropertyName { return @{ @"Id": @"id", @"is_subscribed": @"extension_attributes.is_subscribed", }; } + (NSDictionary *)mj_objectClassInArray{ return @{ @"addresses" : [ASAddressModel class] }; } @end @implementation ASAddressModel + (NSDictionary *)mj_replacedKeyFromPropertyName { return @{ @"Id": @"id", }; } @end @implementation ASAddressReginModel @end