Created
February 7, 2019 11:32
-
-
Save icebeam7/caf3dbfb873d26efd199b22051609967 to your computer and use it in GitHub Desktop.
WeatherBotv4 - Constants.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace WeatherBotv4.Helpers | |
{ | |
public static class Constants | |
{ | |
public readonly static string LuisArgs = "LuisEntities"; | |
public readonly static string LocationLabel = "Location"; | |
public readonly static string LocationPatternLabel = "Location_PatternAny"; | |
public static string OpenWeatherMapURL = $"http://api.openweathermap.org/data/2.5/weather"; | |
public readonly static string OpenWeatherMapKey = "tu-llave-de-openweathermap"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment