Files
yinmeng-ios/xplan-ios/Main/Monents/View/XPMonentsLatestProtocol.h
2022-08-26 21:38:47 +08:00

20 lines
467 B
Objective-C

//
// XPMonentsLatestProtocol.h
// xplan-ios
//
// Created by 冯硕 on 2022/5/18.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class MonentsListInfoModel;
@protocol XPMonentsLatestProtocol <NSObject>
///获取最新列表从成功
- (void)getMonentsLatestListSuccess:(MonentsListInfoModel *)listInfo state:(int)state;
///获取最新列表从失败
- (void)getMonentsLatestListFail:(NSString *)msg state:(int)state;
@end
NS_ASSUME_NONNULL_END