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

34 lines
797 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.

//
// NIMDeleteMessagesOption.h
// NIMLib
//
// Created by Netease.
// Copyright © 2017年 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 批量删除消息选项
*/
@interface NIMDeleteMessagesOption : NSObject
/**
* 是否移除对应最近会话
* @discussion 批量删除消息时是否移除最近会话,默认为 NO设置为 YES 时将同时删除最近会话信息
*/
@property (nonatomic,assign) BOOL removeSession;
/**
* 是否删除消息表
* @discussion 默认情况下云信采用标记的方式进行消息删除,如果设置为 YES将一并移除对应的消息表进而减少消息表数量加快 I/O
*/
@property (nonatomic,assign) BOOL removeTable;
@end
NS_ASSUME_NONNULL_END