8 lines
203 B
C#
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();
|
|
} |