12345678910111213141516171819 |
- //
- // FKRecommendInfoItem.h
- // FirstLink
- //
- // Created by jack on 16/1/20.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKRecommendInfoItem : NSObject
- @property (nonatomic, strong) NSString *userID;
- @property (nonatomic, strong) NSString *nickName;
- @property (nonatomic, strong) NSString *headerPicUrl;
- @property (nonatomic, strong) NSString *recommendTitle;
- @end
|