orderVideoCell.h 556 B

1234567891011121314151617181920212223
  1. //
  2. // orderVideoCell.h
  3. // YBVideo
  4. //
  5. // Created by IOS1 on 2019/7/5.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NearbyVideoModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface orderVideoCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *thumbImgV;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  16. @property (nonatomic,strong) NearbyVideoModel *videoModel;
  17. @end
  18. NS_ASSUME_NONNULL_END