mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
15 lines
228 B
C#
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;
|
|
}
|
|
}
|
|
}
|