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

29 lines
757 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.

//
// NIMDeleteRecentSessionOption.h
// NIMSDK
//
// Created by I am Groot on 2020/12/6.
// Copyright © 2020 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NIMDeleteRecentSessionOption : NSObject
/**
* 是否移除该会话的服务端漫游消息
* @discussion ,默认为 NO仅删除本地会话为YES将同时删除服务端漫游消息
*/
@property (nonatomic,assign) BOOL isDeleteRoamMessage;
/**
* 是否标记会话中所有消息已读
* @discussion ,默认为为 NO仅删除本地会话为YES将同时标记会话中所有消息为已读
*/
@property (nonatomic,assign) BOOL shouldMarkAllMessagesReadInSessions;
@end
NS_ASSUME_NONNULL_END