DSRefundDetailsTableViewCell.h 586 Bytes
//
//  DSRefundDetailsTableViewCell.h
//  DSCnliveShopSDK
//
//  Created by zhaolin on 2019/2/19.
//

#import <DSBaseControlsModule/DSBaseControlsModule.h>

NS_ASSUME_NONNULL_BEGIN

@interface DSRefundDetailsTableViewCell : DSTableViewCell

@property (nonatomic,copy,readonly) NSString * title;
@property (nonatomic,copy,readonly) NSString * content;
@property (nonatomic,assign,readonly) BOOL isSectionHeader;//是否为区标题显示(省了写区头了)

-(void)setTitle:(NSString*)title content:(NSString*)content isSectionHeader:(BOOL)isSectionHeader;

@end

NS_ASSUME_NONNULL_END