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
		
			
				
	
	
		
			21 lines
		
	
	
		
			482 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			482 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 UserFollows
 | 
						|
    {
 | 
						|
        public UserFollows() { }
 | 
						|
 | 
						|
        [JsonPropertyName("data")]
 | 
						|
        public List<UsersFollowsData> results { get; set; }
 | 
						|
 | 
						|
        [JsonPropertyName("pagination")]
 | 
						|
        public Pagination Pagination { get; set; }
 | 
						|
    }
 | 
						|
}
 |