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

28 lines
505 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.

//
// NIMQChatMessageServerIdInfo.h
// NIMLib
//
// Created by Evang on 2022/4/1.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NIMQChatMessageServerIdInfo : NSObject
/**
* 消息服务端ID服务端
*/
@property (nonatomic,copy) NSString *serverID;
/**
* 消息发送时间(服务端)
*/
@property (nonatomic,assign) NSTimeInterval timestamp;
@end
NS_ASSUME_NONNULL_END