using MessageService.Domain.Enums; namespace MessageService.Domain.KeyObjects { public record MessageCreateContext( ChatType ChatType, Guid ClientMsgId, Guid SenderId, Guid TargetId ); }