23 lines
407 B
C
23 lines
407 B
C
|
|
//
|
||
|
|
// VIPGoodsInfo.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by 谢培艺 on 2022/5/2.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
#import "VIPItem.h"
|
||
|
|
#import "VIPGoods.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface VIPGoodsInfo : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, strong) VIPGoods *good;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSArray<VIPItem *> *vip_items;
|
||
|
|
@property (nonatomic, assign) int vip_selected_index;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|