23 lines
384 B
Mathematica
23 lines
384 B
Mathematica
|
|
//
|
||
|
|
// 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
|