AppSettings.cs 517 B

123456789
  1. namespace MafiaTelegramBot.Resources
  2. {
  3. public static class AppSettings
  4. {
  5. //public static string Url { get; set; } = ""; //TODO use this if need html tg api to get message updates
  6. public static string Name { get; set; } = ""; //TODO paste your bot name here if need using full commands like /start@mafiabot, if value "", triggers to all /start commands
  7. public static string Token { get; set; } = "1729356281:AAG8D_hO9b2WIS19doTVrPiPW3q7GFwAX2w"; //TODO paste your bot token here
  8. }
  9. }