Files
IM_NEW/MessageService.WebApi/Application/Message/GetMessageCommand.cs
2026-05-09 17:06:30 +08:00

5 lines
169 B
C#

namespace MessageService.WebApi.Application.Message
{
public record GetMessageCommand(Guid conversationId, Guid userId, long? cusor, int direction, int limit);
}