KWMAdvertisement.h 414 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10
//
//  KWMAdvertisement.h
//  iCemarose
//
//  Created by HouWeiBin on 2017/7/7.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import "KWMBaseModel.h"

lee committed
11
@interface KWMAdvertisement :JSONModel
houweibin committed
12 13 14 15 16 17 18 19 20 21

//标题
@property (nonatomic) NSString *title;

//图片地址
@property (nonatomic) NSString *image;

//链接
@property (nonatomic) NSString *url;

u  
lee committed
22 23
@property (nonatomic) NSString <Optional> *action;

houweibin committed
24
@end