//
//  LookOnLineDetailCell.h
//  redstar
//
//  Created by admin on 16/1/13.
//  Copyright © 2016年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
@class LookOnLineModel;

@interface LookOnLineDetailCell : UITableViewCell
@property (nonatomic, strong) UILabel *titleLabel;

@property (nonatomic, strong) UILabel *shopnameLabel; // 商店名称
@property (nonatomic, strong) UILabel *overDateLabel; // 截止时间
@property (nonatomic, strong) UILabel *peopleLabel; // 发起人
@property (nonatomic, strong) UILabel *startDateLabel; // 起始时间
@property (nonatomic, strong) UILabel *taskContentLabel; // 起始时间

@property (nonatomic, strong) UILabel *dayLabel; // 剩余天数

@property (nonatomic, strong) LookOnLineModel *lookOnLine;

@end