CSJPlayableVideoInfo.h 390 B

1234567891011121314151617181920
  1. //
  2. // CSJPlayableVideoInfo.h
  3. // CSJAdSDK
  4. //
  5. // Created by yujie on 2022/10/8.
  6. //
  7. #import "CSJVideoInfo.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef NS_ENUM(NSUInteger, BUVideoDirection) {
  10. BUVideoDirection_Portrait = 0,
  11. BUVideoDirection_Landscape = 1
  12. };
  13. @interface CSJPlayableVideoInfo : CSJVideoInfo
  14. @property (nonatomic, assign) BUVideoDirection direction;
  15. @end
  16. NS_ASSUME_NONNULL_END