1234567891011121314151617 |
- //
- // DRModelCollectionCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/7/11.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DRChildGoodModel.h"
- @interface DRModelCollectionCell : UICollectionViewCell
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) DRChildGoodModel *model;
- @end
|