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
37 lines
923 B
C#
37 lines
923 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 UsersFollowsData
|
|
{
|
|
public UsersFollowsData() { }
|
|
|
|
[JsonPropertyName("from_id")]
|
|
public string FromID { get; set; }
|
|
|
|
[JsonPropertyName("from_login")]
|
|
public string FromUserName { get; set; }
|
|
|
|
[JsonPropertyName("from_name")]
|
|
public string FromDisplayName { get; set; }
|
|
|
|
[JsonPropertyName("to_id")]
|
|
public string ToID { get; set; }
|
|
|
|
[JsonPropertyName("to_login")]
|
|
public string ToUserName { get; set; }
|
|
|
|
[JsonPropertyName("to_name")]
|
|
public string ToDisplayName { get; set; }
|
|
|
|
[JsonPropertyName("followed_at")]
|
|
public string FollowedISODateTime { get; set; }
|
|
|
|
}
|
|
}
|