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
30 lines
714 B
C#
30 lines
714 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TwitchDesktopNotifications.JsonStructure.Helix
|
|
{
|
|
public class StreamsData
|
|
{
|
|
public StreamsData() { }
|
|
|
|
[JsonPropertyName("user_id")]
|
|
public string UserId { get; set; }
|
|
|
|
[JsonPropertyName("user_name")]
|
|
public string DisplayName { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonPropertyName("title")]
|
|
public string Title { get; set; }
|
|
|
|
[JsonPropertyName("thumbnail_url")]
|
|
public string ThumbnailImg { get; set; }
|
|
}
|
|
}
|