123456789101112131415161718192021 |
- //
- // FKRecoNewsItem.h
- // FirstLink
- //
- // Created by ascii on 2017/6/14.
- // Copyright © 2017年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKRecoNewsItem : NSObject
- @property (nonatomic, strong) NSString *logoImgURL;
- @property (nonatomic, strong) NSString *headImgURL;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *source;
- @property (nonatomic, strong) NSString *updateTime;
- @property (nonatomic, strong) NSString *targetURL;
- @end
|