Files
yinmeng-ios/xplan-ios/Main/Mine/Protocol/XPMineSettingProtocol.h
2024-03-28 10:01:03 +08:00

34 lines
733 B
Objective-C

//
// XPMineSettingProtocol.h
// xplan-ios
//
// Created by 冯硕 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)fillInviteCodeSuccess;
///补填邀请码失败
-(void)fillInviteCodeFail:(NSInteger)code;
@end
NS_ASSUME_NONNULL_END