using System.Net.Mime; using Telegram.Bots.Types; namespace CasaBotApp; public class BotCommand { public string Command { get; set; } = "/example"; public string Description { get; set; } = "Start the bot"; public Func>> Responder { get; set; } = (_, _) => Task.FromResult>(null); public Func? Action { get; set; } }