CSJSplashControlSlideAreaModel.h 639 B

123456789101112131415161718192021222324252627
  1. //
  2. // CSJSplashControlSlideAreaModel.h
  3. // CSJAdSDK
  4. //
  5. // Created by Willie on 2021/9/27.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "CSJModelSerialization.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 开屏上滑动画时,可滑动范围的控制模型
  11. @interface CSJSplashControlSlideAreaModel : NSObject <NSSecureCoding, CSJModelSerialization>
  12. /// 默认 150
  13. @property (nonatomic, assign) NSInteger topMargin;
  14. /// 默认 30
  15. @property (nonatomic, assign) NSInteger leftMargin;
  16. /// 默认 30
  17. @property (nonatomic, assign) NSInteger bottomMargin;
  18. /// 默认 40
  19. @property (nonatomic, assign) NSInteger rightMargin;
  20. @end
  21. NS_ASSUME_NONNULL_END