telegram-listener/Nocr.TelegramListener.Async.Api.Contracts/Events/TextUpdateReceived.cs
2024-03-20 00:12:10 +04:00

8 lines
203 B
C#

using Nocr.TelegramListener.Core.Events;
namespace Nocr.TelegramListener.Async.Api.Contracts.Events;
public sealed class TextUpdateReceived : IEvent
{
public Guid Id { get; } = Guid.NewGuid();
}