Files
peko-ios/YuMi/Modules/YMMine/Protocol/XPMineSettingProtocol.h
2023-10-17 18:30:14 +08:00

33 lines
734 B
Objective-C

//
// YMMineSettingProtocol.h
// YUMI
//
// Created by YUMI on 2021/9/17.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class XPVersionUpdateModel;
@protocol XPMineSettingProtocol <NSObject>
/// 获取数据成功
- (void)getMineSettingDatasourceSuccess:(NSArray *)array;
///获取用户信息成功
- (void)onGetUserInfoSuccess:(UserInfoModel *)userInfo;
///退出当前账号成功
- (void)logoutCurrentAccountSuccess;
///版本更新接口失败
- (void)getVersionUpdateFail;
///版本更新
-(void)getVersionUpdate:(XPVersionUpdateModel *)model;
///屏蔽房间列表
-(void)getBlackRoomList:(NSArray *)list;
///解除屏蔽
-(void)requestUnmaskingFromBlackRoomListSuccess;
@end
NS_ASSUME_NONNULL_END