topicVideoCell.h 396 B

1234567891011121314151617181920
  1. //
  2. // topicVideoCell.h
  3. // YBVideo
  4. //
  5. // Created by IOS1 on 2019/7/4.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NearbyVideoModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface topicVideoCell : UICollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *thumbImgV;
  13. @property (nonatomic,strong) NearbyVideoModel *model;
  14. @end
  15. NS_ASSUME_NONNULL_END