19 lines
245 B
Objective-C
19 lines
245 B
Objective-C
//
|
|
// VIPGoodsInfo.m
|
|
// TreeHole
|
|
//
|
|
// Created by 谢培艺 on 2022/5/2.
|
|
//
|
|
|
|
#import "VIPGoodsInfo.h"
|
|
|
|
@implementation VIPGoodsInfo
|
|
|
|
+ (NSDictionary *)mj_objectClassInArray {
|
|
return @{
|
|
@"vip_items": [VIPItem class]
|
|
};
|
|
}
|
|
|
|
@end
|