using MediatR; using MessageService.Domain.Entities; namespace MessageService.Domain.Events { public record ConversationCreatedDomainEvent(Conversation Conversation) : INotification; }