DSServiceHPCollectionReusableFooterView.h 713 Bytes
//
//  DSServiceHPCollectionReusableFooterView.h
//  DSCnliveShopSDK
//
//  Created by zhaolin on 2019/11/4.
//  Copyright © 2019 BIKE. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "DSServiceHPDataModel.h"

UIKIT_EXTERN NSString * _Nonnull const kDSServiceHPCollectionReusableFooterViewID;

NS_ASSUME_NONNULL_BEGIN

@interface DSServiceHPCollectionReusableFooterView : UICollectionReusableView

#pragma mark - 赋值

@property (nonatomic,strong,readonly) NSIndexPath * indexPath;
@property (nonatomic,copy,readonly) NSArray<DSServiceHPDataModel*> * sectionDatas;

-(void)setIndexPath:(NSIndexPath *)indexPath sectionDatas:(NSArray<DSServiceHPDataModel*> *)sectionDatas;

@end

NS_ASSUME_NONNULL_END