23 lines
384 B
Objective-C
23 lines
384 B
Objective-C
//
|
|
// VIPConfig.m
|
|
// TreeHole
|
|
//
|
|
// Created by 谢培艺 on 2022/5/2.
|
|
//
|
|
|
|
#import "VIPConfig.h"
|
|
|
|
NSString const *PayMethodApplePay = @"Apple";
|
|
//NSString const *PayMethodWeChatPay = @"WxPay";
|
|
//NSString const *PayMethodAliPay = @"AliPay";
|
|
|
|
@implementation VIPConfig
|
|
|
|
+ (NSDictionary *)mj_objectClassInArray {
|
|
return @{
|
|
@"vip_goods": [VIPGoodsInfo class]
|
|
};
|
|
}
|
|
|
|
@end
|