|
1 | | -ο»Ώnamespace DonationIntegration |
2 | | -{ |
3 | | - class Config |
4 | | - { |
5 | | - /* |
6 | | - Here I`m putting some configurations for our plugin |
7 | | - I will make an ini config in future |
8 | | - DO NOT TOUCH ACCESS TOKEN AND WHAT'S BELOW IT |
9 | | - */ |
10 | | - |
11 | | - public static string client_id = ""; // You can change it to your own |
12 | | - public static string client_secret = ""; // You can change it to your own |
13 | | - public static string redirect_URL = ""; // You can change it to your own |
14 | | - |
15 | | - public static bool bDebug = false; |
16 | | - |
17 | | - public static string authCode = ""; |
18 | | - public static string access_token = ""; |
19 | | - public static string refresh_token = ""; |
20 | | - |
21 | | - public static string channel_id = ""; |
22 | | - public static string socketClient_id = ""; |
23 | | - public static string channelConnection_token = ""; |
24 | | - } |
25 | | -} |
| 1 | +ο»Ώnamespace StreamIntegration |
| 2 | +{ |
| 3 | + class Config |
| 4 | + { |
| 5 | + /* |
| 6 | + Here I`m putting some configurations for our plugin |
| 7 | + I will make an ini config in future |
| 8 | + DO NOT TOUCH ACCESS TOKEN AND WHAT'S BELOW IT |
| 9 | + */ |
| 10 | + |
| 11 | + public static string client_id = ""; // You can change it to your own |
| 12 | + public static string client_secret = ""; // You can change it to your own |
| 13 | + public static string redirect_URL = ""; // You can change it to your own |
| 14 | + |
| 15 | + public static bool bDebug = false; |
| 16 | + |
| 17 | + public static string authCode = ""; |
| 18 | + public static string access_token = ""; |
| 19 | + public static string refresh_token = ""; |
| 20 | + |
| 21 | + public static string channel_id = ""; |
| 22 | + public static string socketClient_id = ""; |
| 23 | + public static string channelConnection_token = ""; |
| 24 | + |
| 25 | + public static string plugin_tag = "[D-API] "; |
| 26 | + } |
| 27 | +} |
0 commit comments