//
// taskCell.h
// ThePaperBase
//
// Created by Huixin on 15/10/26.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface taskCell : UITableViewCell
@property(nonatomic, strong)NSDictionary *taskInfo;
- (void)addBottomLine;
@end
|