12345678910111213141516171819202122 |
- //
- // DRCommunityShareCell.h
- // YouHuiProject
- //
- // Created by liuxueli on 2018/11/27.
- // Copyright © 2018 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DRCommunityDetailModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface DRCommunityShareCell : UICollectionViewCell
- @property (nonatomic, strong) UIImageView *goodImg;
- @property (nonatomic, strong) UIImageView *tipeImg;
- @property (nonatomic, strong) UILabel *shareLabel;
- @property(nonatomic,strong)DRCommunityDetailModel *model;
- @end
- NS_ASSUME_NONNULL_END
|