12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // 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
|