22 lines
404 B
Objective-C
22 lines
404 B
Objective-C
//
|
|
// IfishMassageModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/7/26.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishMassageModel : NSObject
|
|
|
|
@property (nonatomic,copy) NSString *IconImage;
|
|
|
|
@property (nonatomic,copy) NSString *title;
|
|
|
|
@property (nonatomic,copy) NSString *content;
|
|
|
|
@property (nonatomic,copy) NSString *creatTime;
|
|
|
|
@end
|