Files
yinmeng-ios/xplan-ios/Main/Mine/Protocol/XPMineSettingProtocol.h
2022-12-23 10:43:58 +08:00

30 lines
614 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;
@end
NS_ASSUME_NONNULL_END