Added Support for Debug Logging
Updated a couple of variables for better memory use. Added Support for ignoring specific streamers Moved to using a SingletonFactory for Singlton Classes No Longer Using MessageBox for disconnected message Added better detection for disconnected to stop it poping with other problems Added Window and menu option to open window to manage ignored streamers
This commit is contained in:
@@ -8,17 +8,28 @@ using TwitchDesktopNotifications.JsonStructure.Helix;
|
||||
|
||||
namespace TwitchDesktopNotifications.JsonStructure
|
||||
{
|
||||
internal class Store
|
||||
public class Store
|
||||
{
|
||||
public Store() { }
|
||||
|
||||
[JsonPropertyName("ignore")]
|
||||
public SteamersToIgnore ignore { get; set; }
|
||||
|
||||
[JsonPropertyName("authentication")]
|
||||
public Authentication Authentication { get; set; }
|
||||
|
||||
[JsonPropertyName("user_data")]
|
||||
public UserData UserData { get; set; }
|
||||
|
||||
[JsonPropertyName("notifications_for")]
|
||||
public SteamersToNotify SteamersToNotify { get; set; };
|
||||
[JsonIgnore]
|
||||
public SteamersToIgnore SteamersToIgnore {
|
||||
get {
|
||||
if(ignore == null) { ignore = new SteamersToIgnore(); }
|
||||
return ignore;
|
||||
}
|
||||
set {
|
||||
ignore = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user