//
//  CommonBarCell.h
//  smartRhino
//
//  Created by niuzhen on 2020/4/28.
//  Copyright © 2020 tederen. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "CommonBarModel.h"
NS_ASSUME_NONNULL_BEGIN

@interface CommonBarCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *imagV;
@property (weak, nonatomic) IBOutlet UILabel *nameL;
- (void)setDataWithModel:(CommonBarModel *)model;
@end

NS_ASSUME_NONNULL_END