//
//  AccountAndSecurityTableViewCell.h
//  ChinaTheoryNetwork
//
//  Created by 张毅成 on 2019/1/28.
//  Copyright © 2019 张毅成. All rights reserved.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface AccountAndSecurityTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *labelTItle;
@property (weak, nonatomic) IBOutlet UILabel *labelDetail;

+ (instancetype)cellWithTableView:(UITableView *)tableView;
@end

NS_ASSUME_NONNULL_END