chatbot/Chatbot.Api.Application/Events/ChatClosed.cs

15 lines
228 B
C#

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