TheShopCritics2/TSC2/Components/CSharp/Credentials.cs

12 lines
445 B
C#
Raw Normal View History

2024-08-05 17:13:29 +00:00
namespace TSC2.Components.CSharp
{
public class Credentials
{
public static string GoogleClientId = "656434530552-03u6d8t2lpf1phuq6qkq0getfh9d7di9.apps.googleusercontent.com";
public static string GoogleClientSecret = "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";
2024-08-08 17:17:41 +00:00
public static string FacebookAppId = "791426466201326";
public static string FacebookClientSecret = "13ae28aac6727b898ba712eb78ab0f24";
2024-08-05 17:13:29 +00:00
}
}