AppSettings.cs 461 B

123456789
  1. namespace MafiaTelegramBot
  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; } = ""; //TODO paste your bot token here
  8. }
  9. }