2025-10-09 16:48:46 +08:00

28 lines
614 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// V2NIMNotificationConfig.h
// NIMSDK
//
// Created by 齐洪茹 on 2023/8/30.
// Copyright © 2023 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/// 通知相关配置
@interface V2NIMNotificationConfig : NSObject
/// 是否需要存离线通知
/// true需要 false不需要只有在线用户会收到
@property(nonatomic,assign,readwrite) BOOL offlineEnabled;
/// 是否需要计通知未读
/// 与会话未读无关
/// true需要
/// false不需要
@property(nonatomic,assign,readwrite) BOOL unreadEnabled;
@end
NS_ASSUME_NONNULL_END