XSConfiguration.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // XSConfiguration.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/28.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "JSONModel.h"
  10. @interface XSConfiguration : JSONModel
  11. //悬浮球打开(关闭)状态
  12. @property (nonatomic, assign) BOOL isFloatDisable;
  13. @property (nonatomic, strong) NSString* adPrams;
  14. @property (nonatomic, strong) NSString* tdAppId;
  15. @property (nonatomic, strong) NSString* tdGameId;
  16. @property (nonatomic, assign) NSInteger closeState;
  17. @property (nonatomic, strong) NSString* closeUrl;
  18. @property (nonatomic, assign) NSInteger linkQq;
  19. @property (nonatomic, strong) NSString* linkTel;
  20. @property (nonatomic, assign) NSInteger serverStatus;
  21. @property (nonatomic, strong) NSString* updateUrl;
  22. @property (nonatomic, strong) NSString* updateVersion;
  23. @property (nonatomic, assign) NSInteger updateState; // 0 disable, 1 normal, 2: force
  24. @property (nonatomic, strong) NSString* thirdPartyPrams;
  25. @property (nonatomic, readonly) NSString* fixLinkQQ;
  26. @property (nonatomic, readonly) NSString* fixLinkTel;
  27. @end