preservationView.h 480 B

12345678910111213141516171819202122232425
  1. //
  2. // preservationView.h
  3. // UniversalApp
  4. //
  5. // Created by xu on 2020/9/12.
  6. // Copyright © 2020 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "videoListModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface preservationView : UIView
  12. @property(nonatomic, strong) videoListModel *model;
  13. ///
  14. @property (nonatomic, strong) NSString *url;
  15. ///
  16. @property (nonatomic, assign) BOOL is_Small;
  17. ///
  18. @property (nonatomic, strong) UIImage *imageStr;
  19. @end
  20. NS_ASSUME_NONNULL_END