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

24 lines
503 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.

//
// NIMDeleteMessageOption.h
// NIMLib
//
// Created by 张根宁 on 2020/6/8.
// Copyright © 2020 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NIMDeleteMessageOption : NSObject
/**
* 是否从数据库中删除
* @discussion 默认情况下云信采用标记的方式进行消息删除,如果设置为 YES将直接从数据库中移除该消息
*/
@property (nonatomic,assign) BOOL removeFromDB;
@end
NS_ASSUME_NONNULL_END