12345678910111213141516171819 |
- //
- // FKHaoHuoItem.h
- // FirstLink
- //
- // Created by ascii on 2017/6/14.
- // Copyright © 2017年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKHaoHuoItem : NSObject
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *targetURL;
- @property (nonatomic, strong) NSArray *picURLs;
- @end
|