12 lines
211 B
C#
12 lines
211 B
C#
using MessageService.Domain.Enums;
|
|
|
|
namespace MessageService.Domain.KeyObjects
|
|
{
|
|
public record MessageCreateContext(
|
|
ChatType ChatType,
|
|
Guid ClientMsgId,
|
|
Guid SenderId,
|
|
Guid TargetId
|
|
);
|
|
}
|