mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-30 08:41:07 +00:00
36 lines
850 B
C#
36 lines
850 B
C#
namespace SteamLib.Core;
|
|
|
|
public static class SteamConstants
|
|
{
|
|
#region Base
|
|
|
|
public const string STEAM_STORE = "https://store.steampowered.com/";
|
|
public const string STEAM_COMMUNITY = "https://steamcommunity.com/";
|
|
public const string STEAM_API = "https://api.steampowered.com/";
|
|
public const string STEAM_HELP = "https://help.steampowered.com/";
|
|
public const string STEAM_TV = "https://steam.tv/";
|
|
public const string STEAM_CHECKOUT = "https://checkout.steampowered.com/";
|
|
public const string LOGIN_STEAM = "https://login.steampowered.com/";
|
|
|
|
|
|
#endregion
|
|
|
|
#region Endpoints
|
|
|
|
public const string STEAM_MARKET = STEAM_COMMUNITY + "market/";
|
|
public const string STORE_API = STEAM_STORE + "api/";
|
|
|
|
#endregion
|
|
|
|
|
|
#region Misc
|
|
|
|
public const string ENGLISH = "english";
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
} |