Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Donghuan-He/Constants.cs
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
11 lines (11 sloc)
325 Bytes
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 WeatherApp | |
{ | |
public static class Api | |
{ | |
public static string Endpoint = "https://v0.tianqiapi.com"; | |
public static string AppId = "55884951"; | |
public static string Appsecret = "Nsetj6iK"; | |
public static string Language = "en"; | |
public static string unit = "m"; | |
} | |
} |