23 lines
550 B
Objective-C
23 lines
550 B
Objective-C
//
|
|
// IfishInformations.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/13.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishInformations : NSObject
|
|
|
|
@property (nonatomic) int clickNum;
|
|
@property (nonatomic) int pinglunNum;
|
|
@property (nonatomic,copy) NSString *contents;
|
|
@property (nonatomic,copy) NSString *image;
|
|
@property (nonatomic) int infoId;
|
|
@property (nonatomic,copy) NSString *link;
|
|
@property (nonatomic,copy) NSString *title;
|
|
|
|
-(instancetype)initWithDict:(NSDictionary *)dict;
|
|
@end
|