37 lines
875 B
Objective-C
37 lines
875 B
Objective-C
//
|
|
// VIPCard.h
|
|
// TreeHole
|
|
//
|
|
// Created by 谢培艺 on 2022/5/2.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
"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 VIPCard : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *buy_button_promotion_title;
|
|
@property (nonatomic, strong) NSString *buy_button_title;
|
|
@property (nonatomic, strong) NSString *card_bg_img;
|
|
@property (nonatomic, strong) NSString *vip_avatars_img;
|
|
@property (nonatomic, strong) NSString *vip_des;
|
|
@property (nonatomic, strong) NSString *vip_exp_date;
|
|
@property (nonatomic, strong) NSString *vip_no;
|
|
@property (nonatomic, strong) NSString *vip_num;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|