28 lines
681 B
Objective-C
28 lines
681 B
Objective-C
//
|
|
// VIPGoods.h
|
|
// TreeHole
|
|
//
|
|
// Created by 谢培艺 on 2022/5/2.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface VIPGoods : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *buy_button_title;
|
|
@property (nonatomic, strong) NSString *buy_des;
|
|
@property (nonatomic, strong) NSString *good_title;
|
|
@property (nonatomic, strong) NSString *original_price;
|
|
@property (nonatomic, strong) NSString *sell_price;
|
|
@property (nonatomic, strong) NSString *sell_promotion_title;
|
|
@property (nonatomic, assign) int vip_good_id;
|
|
@property (nonatomic, strong) NSString *apple_good_id;
|
|
@property (nonatomic, strong) NSString *price_desc;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|