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

15 lines
228 B
C#
Raw Normal View History

2020-06-07 02:38:52 +03:00
using System;
namespace Chatbot.Api.Application.Events
{
public class ChatClosed
{
public Guid ChatId { get; }
public ChatClosed(Guid chatId)
{
ChatId = chatId;
}
}
}