You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

39 lines
842 B

//
// 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