feat:增加查询消息接口模块
This commit is contained in:
14
SweetChatService/Dto/ChatMessageDto.cs
Normal file
14
SweetChatService/Dto/ChatMessageDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace SweetChatService.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 会话消息
|
||||
/// </summary>
|
||||
public class ChatMessageDto
|
||||
{
|
||||
public long MsgId { get; set; }
|
||||
public long SenderId { get; set; }
|
||||
public string Content { get; set; } = string.Empty;
|
||||
public byte MsgType { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user