cdts/xdts-ios 3/TreeHole/Code/Features/VIP/VIPItem.h

25 lines
392 B
C
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// 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