We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c024fe9 commit d1323e9Copy full SHA for d1323e9
1 file changed
DefaultPlugin/Sources/Twitch/Twitch.cs
@@ -10,6 +10,7 @@
10
using Sync.Tools;
11
using System.Timers;
12
using Sync.MessageFilter;
13
+using Sync.Tools.ConfigurationAttribute;
14
15
namespace DefaultPlugin.Sources.Twitch
16
{
@@ -48,7 +49,9 @@ public Twitch() : base(SOURCE_NAME, SOURCE_AUTHOR)
48
49
public ConfigurationElement HostChannelName { get; set; } = "";
50
public ConfigurationElement DefaultClientID { get; set; } = "";
51
public ConfigurationElement CurrentClientID { get; set; } = "";
- public ConfigurationElement IsUsingCurrentClientID { get; set; } = "1";
52
+
53
+ [Bool]
54
+ public ConfigurationElement IsUsingCurrentClientID { get; set; } = "True";
55
public ConfigurationElement SOAuth { get; set; } = "";
56
#region 接口实现
57
0 commit comments