23 lines
476 B
Objective-C
23 lines
476 B
Objective-C
//
|
|
// YMMineNotificaPresenter.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/17.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPMineNotificationItemModel;
|
|
@interface XPMineNotificaPresenter : BaseMvpPresenter
|
|
/// 请求当前开关的状态
|
|
- (void)requestUserInfoNotifyStatus;
|
|
|
|
/// 更新系统消息状态
|
|
- (void)updateUserInfoSystemNotify:(BOOL)notify;
|
|
/// 更新开播消息状态
|
|
- (void)updateBroadCastNotify:(BOOL)notify;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|