Files
yinmeng-ios/xplan-ios/Main/Home/View/XPPartyListViewController.h
2023-10-10 11:19:56 +08:00

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