43 lines
784 B
Objective-C
43 lines
784 B
Objective-C
//
|
|
// VIPCardInfo.h
|
|
// TreeHole
|
|
//
|
|
// Created by 谢培艺 on 2022/5/2.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "VIPCard.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
/**
|
|
"is_audit": 0,
|
|
"is_buyed_vip": 0,
|
|
"vip_flag_img": "string",
|
|
"vip_kind": 0,
|
|
"vipcard": {
|
|
"buy_button_promotion_title": "string",
|
|
"buy_button_title": "string",
|
|
"card_bg_img": "string",
|
|
"vip_avatars_img": "string",
|
|
"vip_des": "string",
|
|
"vip_exp_date": "string",
|
|
"vip_no": "string",
|
|
"vip_num": "string"
|
|
}
|
|
*/
|
|
|
|
@interface VIPCardInfo : NSObject
|
|
|
|
@property (nonatomic, assign) BOOL is_audit;
|
|
@property (nonatomic, assign) BOOL is_buyed_vip;
|
|
@property (nonatomic, assign) int vip_kind;
|
|
@property (nonatomic, strong) VIPCard *vipcard;
|
|
|
|
- (BOOL)isVIP;
|
|
|
|
- (BOOL)isForever;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|