1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // XSConfiguration.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/28.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "JSONModel.h"
- @interface XSConfiguration : JSONModel
- //悬浮球打开(关闭)状态
- @property (nonatomic, assign) BOOL isFloatDisable;
- @property (nonatomic, strong) NSString* adPrams;
- @property (nonatomic, strong) NSString* tdAppId;
- @property (nonatomic, strong) NSString* tdGameId;
- @property (nonatomic, assign) NSInteger closeState;
- @property (nonatomic, strong) NSString* closeUrl;
- @property (nonatomic, assign) NSInteger linkQq;
- @property (nonatomic, strong) NSString* linkTel;
- @property (nonatomic, assign) NSInteger serverStatus;
- @property (nonatomic, strong) NSString* updateUrl;
- @property (nonatomic, strong) NSString* updateVersion;
- @property (nonatomic, assign) NSInteger updateState; // 0 disable, 1 normal, 2: force
- @property (nonatomic, strong) NSString* thirdPartyPrams;
- @property (nonatomic, readonly) NSString* fixLinkQQ;
- @property (nonatomic, readonly) NSString* fixLinkTel;
- @end
|