mirror of
				https://github.com/lantean-code/qbtmud.git
				synced 2025-11-04 05:53:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			205 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			205 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Lantean.QBitTorrentClient.Models
 | 
						|
{
 | 
						|
    public enum TrackerStatus
 | 
						|
    {
 | 
						|
        Disabled = 0,
 | 
						|
        Uncontacted = 1,
 | 
						|
        Working = 2,
 | 
						|
        Updating = 3,
 | 
						|
        NotWorking = 4,
 | 
						|
    }
 | 
						|
} |