YMAdvertModel.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // YMAdvertModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/23.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMAdvertModel : NSObject
  11. @property (nonatomic, copy) NSString *content;
  12. @property (nonatomic, assign) NSInteger delayed_time;
  13. @property (nonatomic, copy) NSString *gravity;
  14. @property (nonatomic, assign) NSInteger height;
  15. @property (nonatomic, assign) NSInteger Id;
  16. @property (nonatomic, copy) NSString *image;
  17. @property (nonatomic, assign) NSInteger link_type;
  18. @property (nonatomic, copy) NSString *link_url;
  19. @property (nonatomic, assign) NSInteger position;
  20. @property (nonatomic, assign) NSInteger times;
  21. @property (nonatomic, copy) NSString *title;
  22. @property (nonatomic, assign) NSInteger status;
  23. @property (nonatomic, assign) NSInteger type;
  24. @property (nonatomic, assign) NSInteger width;
  25. @property (nonatomic, assign) NSInteger window_link;
  26. @property (nonatomic, assign) NSInteger window_type;
  27. @property (nonatomic, assign) NSInteger showedTag;
  28. @property (nonatomic, copy , readonly) NSString *tag;
  29. @end
  30. NS_ASSUME_NONNULL_END