|
//
// ReadDefaultCell.h
// ThePaperBase
//
// Created by zhousan on 15/8/17.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ReadDefaultCell : UITableViewCell // 阅读模式Cell
@property (nonatomic, strong) NSString *firstString;
@property (nonatomic, strong) NSString *secondString;
@property (nonatomic, strong) UIButton *rightBtn;
@property (nonatomic, assign) BOOL select;
@end
|