mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
1e65cd4a06
NebulaAuth: - Added MAAC and PortableMaClient for multi-confirmations - Code clean-ups, removed unused classes, refactoring of old files - SteamLib updated - Localization and UI updates - Dependcies updated to the last version LegacyConverter: - Added mode to decrypt mafiles
29 lines
841 B
C#
29 lines
841 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
|
|
} |