Files
keyboard/keyBoard/Class/Me/VM/KBMyVM.h

26 lines
452 B
C
Raw Normal View History

2025-12-03 13:31:02 +08:00
//
// KBMyVM.h
// keyBoard
//
// Created by Mac on 2025/12/3.
//
#import <Foundation/Foundation.h>
2025-12-03 20:14:14 +08:00
@class KBUser;
2025-12-03 13:31:02 +08:00
NS_ASSUME_NONNULL_BEGIN
2025-12-03 20:14:14 +08:00
typedef void(^KBMyUserDetailCompletion)(KBUser *_Nullable user, NSError *_Nullable error);
2025-12-03 13:31:02 +08:00
@interface KBMyVM : NSObject
2025-12-03 20:14:14 +08:00
/// 获取当前用户详情(/user/detail
- (void)fetchUserDetailWithCompletion:(KBMyUserDetailCompletion)completion;
/// 退出登录
2025-12-03 13:31:02 +08:00
- (void)logout;
@end
NS_ASSUME_NONNULL_END