|
//
// myAttentionCell.h
// ThePaperHD
//
// Created by liyuan on 15/4/23.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopicInfoBO.h"
@interface myAttentionCell : UITableViewCell
@property(nonatomic,strong)TopicInfoBO *topicInfo;
-(void) setData:(TopicInfoBO *) topInfo;
@end
|