mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			401 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			401 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.FileOrganization
 | 
						|
{
 | 
						|
    public class SmartMatchInfo
 | 
						|
    {
 | 
						|
        public string ItemName { get; set; }
 | 
						|
        public string DisplayName { get; set; }
 | 
						|
        public FileOrganizerType OrganizerType { get; set; }
 | 
						|
        public string[] MatchStrings { get; set; }
 | 
						|
 | 
						|
        public SmartMatchInfo()
 | 
						|
        {
 | 
						|
            MatchStrings = new string[] { };
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |