21 lines
361 B
Objective-C
21 lines
361 B
Objective-C
//
|
|
// YMMineNotifyStatus.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/17.
|
|
//
|
|
|
|
#import "NSObject+MJExtension.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineNotifyStatus : NSObject
|
|
///系统消息通知
|
|
@property (nonatomic, assign) BOOL sysMsgNotify;
|
|
///个播开播通知
|
|
@property (nonatomic, assign) BOOL singleBroadcastMsgNotify;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|