MOJumpList.h 787 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MOJumpList.h
  3. //
  4. // Created by SuperCabbage on 2024/3/20
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOJumpList : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *img;
  10. @property (nonatomic, strong) NSString *jump;
  11. @property (nonatomic, assign) double target;
  12. @property (nonatomic, strong) NSString *title;
  13. //直播间倒计时活动
  14. @property (nonatomic, strong) NSString *icon;
  15. @property (nonatomic, assign) double endTime;
  16. /** 是否是开屏广告跳转 */
  17. @property (nonatomic, assign) BOOL isFirstAdWeb;
  18. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  19. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  20. - (NSDictionary *)dictionaryRepresentation;
  21. @end