123456789101112131415161718192021222324252627 |
- //
- // KXLaunchAdConfiguration.m
- // CAISHEN
- //
- // Created by kuxuan on 2017/8/17.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "KXLaunchAdConfiguration.h"
- @implementation KXLaunchAdConfiguration
- #pragma mark - Public
- - (instancetype)initWithImageURLString:(NSString *)imageURLString detailURLString:(NSString *)detailString productId:(NSString *)product_id skip_type:(NSString *)skipType {
- if (self = [super init]) {
-
- _imageURLString = imageURLString;
- _detailString = detailString;
- _product_id = product_id;
- _skipType =skipType;
- }
-
- return self;
- }
- @end
|