Files
yinmeng-ios/xplan-ios/Main/Mine/Protocol/XPMineSettingProtocol.h

30 lines
614 B
C
Raw Normal View History

2021-09-17 19:41:09 +08:00
//
// XPMineSettingProtocol.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/17.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
2022-12-05 18:56:02 +08:00
@class XPVersionUpdateModel;
2021-09-17 19:41:09 +08:00
@protocol XPMineSettingProtocol <NSObject>
/// 获取数据成功
- (void)getMineSettingDatasourceSuccess:(NSArray *)array;
///获取用户信息成功
- (void)onGetUserInfoSuccess:(UserInfoModel *)userInfo;
2021-10-24 23:41:26 +08:00
///退出当前账号成功
- (void)logoutCurrentAccountSuccess;
2022-12-05 18:56:02 +08:00
///版本更新接口失败
- (void)getVersionUpdateFail;
///版本更新
-(void)getVersionUpdate:(XPVersionUpdateModel *)model;
2021-09-17 19:41:09 +08:00
@end
NS_ASSUME_NONNULL_END