21 lines
359 B
Objective-C
21 lines
359 B
Objective-C
//
|
||
// CellModel.h
|
||
// Ifish
|
||
//
|
||
// Created by ifish7-ios on 16/3/28.
|
||
// Copyright © 2016年 imac. All rights reserved.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
@interface CellModel : NSObject
|
||
|
||
//定义cell中的图片;
|
||
@property(nonatomic,copy) NSString *cellImage;
|
||
//定义cell中的描述文字;
|
||
@property(nonatomic,copy) NSString *cellDesc;
|
||
|
||
|
||
|
||
@end
|