using System;
using Telegram.Bot;
namespace Bot;
class Program
{
private static string token { get; set; } = "токен бла бла бла";
private static TelegramBotClient client;
static void Main(string[] args)
{
client = new TelegramBotClient(token);
client.StartReceiving();
Console.ReadLine();
client.StopReceiving();
}
}