Files
IM_NEW/MessageService.Domain/KeyObjects/MessageContextContext.cs
2026-05-09 17:06:30 +08:00

12 lines
211 B
C#

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