17 lines
258 B
Objective-C
17 lines
258 B
Objective-C
//
|
|
// YMMineFriendPresenter.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/5/29.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineFriendPresenter : BaseMvpPresenter
|
|
- (void)getUserListInfo:(NSArray *)array;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|