123456789101112131415161718192021 |
- //
- // LDSuperListCell.h
- // hc
- //
- // Created by liuxueli on 2018/12/11.
- // Copyright © 2018 hc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LDSuperListModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface LDSuperListCell : UICollectionViewCell
- @property(nonatomic,strong)UIImageView *logoImg;
- @property(nonatomic,strong)UILabel *titlelabel;
- @property(nonatomic,strong)LDSuperListModel *models;
- @end
- NS_ASSUME_NONNULL_END
|