50 lines
1.3 KiB
Objective-C
Executable File
50 lines
1.3 KiB
Objective-C
Executable File
//
|
||
|
||
// app
|
||
//
|
||
// Created by binbins on 2019/3/26.
|
||
// Copyright © 2019 zhifanYoung. All rights reserved.
|
||
//
|
||
|
||
#import "GVUserDefaults.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface GVUserDefaults (APP)
|
||
|
||
@property (nonatomic, strong) NSDictionary *appConfigDict;
|
||
@property (nonatomic, copy) NSString *rongKey; //3argexb63f7me
|
||
@property (nonatomic, copy) NSString *socketUrl; // @"ws://118.190.206.115:9091/ws"
|
||
|
||
@property (nonatomic, strong) NSDictionary *rawUserDict;
|
||
@property (nonatomic, copy) NSString *token;
|
||
|
||
//抱人上麦用,当前位置
|
||
@property(nonatomic, copy) NSString *position;
|
||
|
||
//公屏筛选
|
||
//每次默认是全部
|
||
//0全部,1,聊天,2,互动,3,其他
|
||
@property(nonatomic, copy) NSString *publicType;
|
||
|
||
//自己的房间ID
|
||
@property(nonatomic, copy) NSString *rid;
|
||
|
||
/** 是否打开房主魅力值计算器 */
|
||
@property(nonatomic, strong) NSString *is_calculator;
|
||
|
||
/** 是否开启盲盒巡乐会 */
|
||
@property(nonatomic, strong) NSString *is_open_blindXlh;
|
||
|
||
#pragma mark - 不重要
|
||
@property (nonatomic, assign) BOOL closeGiftEffect; //礼物特效
|
||
|
||
@property(nonatomic, copy) NSString *withdraw_rate;//提现实际到账比例
|
||
|
||
@property (nonatomic, copy) NSString *tencentyun_im_appid;
|
||
@property (nonatomic, copy) NSString *del_user_relation_money;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|