// // VIPItem.h // TreeHole // // Created by 谢培艺 on 2022/5/2. // #import 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