25 lines
392 B
C
25 lines
392 B
C
|
|
//
|
||
|
|
// VIPItem.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by 谢培艺 on 2022/5/2.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
/**
|
||
|
|
"des": "string",
|
||
|
|
"img": "string",
|
||
|
|
"title": "string"
|
||
|
|
*/
|
||
|
|
@interface VIPItem : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSString *img;
|
||
|
|
@property (nonatomic, strong) NSString *title;
|
||
|
|
@property (nonatomic, strong) NSString *des;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|