// // SlideshowModel.h // watch // // Created by Apple on 2020/3/28. // Copyright © 2020 xTT. All rights reserved. // #import "baseModel.h" NS_ASSUME_NONNULL_BEGIN /* title : [str] // 广告标题 image : [str] // 图片链接 url : [str] // 跳转链接 smallprogram_id : [str] // 小程序原始ID smallprogram_path : [str] // 小程序的路径 */ @interface SlideshowModel : NSObject /// id @property (nonatomic, strong) NSString *id; /// 广告标题 @property (nonatomic, strong) NSString *title; /// 图片链接 @property (nonatomic, strong) NSString *image; /// 跳转链接 @property (nonatomic, strong) NSString *url; /// 小程序原始ID @property (nonatomic, strong) NSString *smallprogram_id; /// 小程序的路径 @property (nonatomic, strong) NSString *smallprogram_path; @end NS_ASSUME_NONNULL_END