// // XPMineSettingProtocol.h // xplan-ios // // Created by 冯硕 on 2021/9/17. // #import NS_ASSUME_NONNULL_BEGIN @class XPVersionUpdateModel; @protocol XPMineSettingProtocol /// 获取数据成功 - (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