32 lines
871 B
Objective-C
32 lines
871 B
Objective-C
//
|
|
// JjInitConfigure.h
|
|
// JjyxSdk
|
|
//
|
|
// Created by Mac on 2017/4/25.
|
|
// Copyright © 2017年 wanqi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TracelessInitConfigure : NSObject
|
|
|
|
@property (nonatomic,copy) NSString *appid;
|
|
@property(nonatomic,copy) NSString *channelId;
|
|
@property(nonatomic,copy) NSString *devid;
|
|
@property (nonatomic,copy) NSString *URLSchemes;
|
|
@property (nonatomic,copy) NSString *gifturl;
|
|
@property (nonatomic,copy) NSString *complainUrl;
|
|
@property (nonatomic,copy) NSString *checkgifturl;
|
|
@property (nonatomic,copy) NSString *newsUrl;
|
|
@property (nonatomic,assign) NSInteger tplType;
|
|
|
|
@property (nonatomic , assign) NSInteger openfcm;
|
|
@property (nonatomic , assign) NSInteger opensuser;
|
|
@property (nonatomic , assign) NSInteger fcm;
|
|
|
|
|
|
-(instancetype)initWithAppid:(NSString *)appid URLSchemes:(NSString *)shemes;
|
|
|
|
|
|
@end
|