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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|