-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.cs
30 lines (23 loc) · 1.08 KB
/
Config.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace DonationIntegration
{
class Config
{
/*
Here I`m putting some configurations for our plugin
I will make an ini config in future
DO NOT TOUCH ACCESS TOKEN AND WHAT'S BELOW IT
*/
// You have to register your app right there -> https://www.donationalerts.com/application/clients
public static string client_id = ""; // You can change it to your own
public static string client_secret = ""; // You can change it to your own
public static string redirect_URL = ""; // You can change it to your own
public static bool bDebug = false;
public static string authCode = "";
public static string access_token = "";
public static string refresh_token = "";
public static string channel_id = "";
public static string socketClient_id = "";
public static string channelConnection_token = "";
public static string plugin_tag = "[D-API] ";
}
}