using System; namespace Chatbot.Api.Application.Events { public class ChatClosed { public Guid ChatId { get; } public ChatClosed(Guid chatId) { ChatId = chatId; } } }