cdts/xdts-ios 3/TreeHole/Code/Features/VIP/VIPConfig.h

34 lines
748 B
C
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// VIPConfig.h
// TreeHole
//
// Created by 谢培艺 on 2022/5/2.
//
#import <Foundation/Foundation.h>
#import "VIPGoodsInfo.h"
NS_ASSUME_NONNULL_BEGIN
UIKIT_EXTERN NSString const *PayMethodApplePay;
UIKIT_EXTERN NSString const *PayMethodWeChatPay;
UIKIT_EXTERN NSString const *PayMethodAliPay;
@interface VIPConfig : NSObject
@property (nonatomic, assign) BOOL is_vip;
@property (nonatomic, assign) BOOL is_forever_vip;
@property (nonatomic, strong) NSArray<VIPGoodsInfo *> *vip_goods;
@property (nonatomic, strong) NSString *vip_sub_title;
@property (nonatomic, strong) NSString *hidden_vip_des;
@property (nonatomic, assign) int vip_selected_good;
@property (nonatomic, strong) NSString *pay_method;
@end
NS_ASSUME_NONNULL_END