CenterListCell.h 478 B

1234567891011121314151617181920212223
  1. //
  2. // CenterListCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/6/14.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class NearbyVideoModel;
  10. @interface CenterListCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *videoBgIV;
  12. @property (weak, nonatomic) IBOutlet UILabel *zanNumL;
  13. /** 审核中 */
  14. @property (weak, nonatomic) IBOutlet UILabel *auditL;
  15. @property(nonatomic,strong)NearbyVideoModel *model;
  16. @end