10 lines
212 B
C#
10 lines
212 B
C#
namespace MessageService.WebApi.Application.Message
|
|
{
|
|
public record SearchMessageCommand(
|
|
Guid ConversationId,
|
|
Guid UserId,
|
|
string Keyword,
|
|
long? Cursor,
|
|
int Limit);
|
|
}
|