1234567891011121314151617181920 |
- //
- // VipSubjectCollectionViewCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2019/9/3.
- // Copyright © 2019 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "QuestionModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface VipSubjectCollectionViewCell : UICollectionViewCell
- @property (nonatomic, readwrite, strong) QuesTionItem * _Nullable quesTionItem;
- @property (weak, nonatomic) IBOutlet UIButton *subjectBtn;
- @end
- NS_ASSUME_NONNULL_END
|