5 lines
169 B
C#
5 lines
169 B
C#
namespace MessageService.WebApi.Application.Message
|
|
{
|
|
public record GetMessageCommand(Guid conversationId, Guid userId, long? cusor, int direction, int limit);
|
|
}
|