Files
real-e-party-iOS/YuMi/Modules/YMMine/Protocol/XPMineAttentionProtocol.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

20 lines
389 B
Objective-C

//
// YMMineAttentionProtocol.h
// YUMI
//
// Created by YUMI on 2021/12/21.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@protocol XPMineAttentionProtocol <NSObject>
///获取用户关注列表
- (void)getUserAttentionListSuccess:(NSArray *)array state:(int)state;
///获取关注列表失败
- (void)getUserAttentionListFail:(int)state;
@end
NS_ASSUME_NONNULL_END