| 1234567891011121314151617181920212223242526272829303132 |
- //
- // MOJumpList.h
- //
- // Created by SuperCabbage on 2024/3/20
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOJumpList : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *img;
- @property (nonatomic, strong) NSString *jump;
- @property (nonatomic, assign) double target;
- @property (nonatomic, strong) NSString *title;
- //直播间倒计时活动
- @property (nonatomic, strong) NSString *icon;
- @property (nonatomic, assign) double endTime;
- /** 是否是开屏广告跳转 */
- @property (nonatomic, assign) BOOL isFirstAdWeb;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|