18 lines
405 B
C
18 lines
405 B
C
![]() |
//
|
||
|
// XPMineNotificaProtocol.h
|
||
|
// xplan-ios
|
||
|
//
|
||
|
// Created by 冯硕 on 2021/9/17.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
@class XPMineNotifyStatus, XPMineNotificationItemModel;
|
||
|
@protocol XPMineNotificaProtocol <NSObject>
|
||
|
///获取当前开关的状态成功
|
||
|
- (void)requestUserInfoNotifyStatusSuccess:(NSArray<XPMineNotificationItemModel *> *)array;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|