20 lines
344 B
Objective-C
20 lines
344 B
Objective-C
//
|
|
// IfishNewsModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/11/3.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishNewsModel : NSObject
|
|
|
|
@property(nonatomic,copy)NSString*infoId;
|
|
@property(nonatomic,copy)NSString*title;
|
|
|
|
|
|
-(instancetype)initWithDict:(NSDictionary *)dict;
|
|
|
|
@end
|