29 lines
480 B
Objective-C
29 lines
480 B
Objective-C
//
|
|
// XPPartyListViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/3/7.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
@protocol XPPartyListViewControllerDelegate <NSObject>
|
|
|
|
-(void)headerRefreshComplete;
|
|
|
|
@end
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPPartyListViewController : MvpViewController
|
|
|
|
///模块的 ID
|
|
@property (nonatomic,copy) NSString *tabId;
|
|
@property(nonatomic,weak) id<XPPartyListViewControllerDelegate>delegate;
|
|
- (void)headerRefresh;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|