Files
yuyin_ios/SweetParty/Expand/YBKit/GVUserDefaults+APP.h
2025-08-08 11:05:33 +08:00

50 lines
1.3 KiB
Objective-C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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