mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			682 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			682 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.FileOrganization
 | 
						|
{
 | 
						|
    public class AutoOrganizeOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the tv options.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The tv options.</value>
 | 
						|
        public TvFileOrganizationOptions TvOptions { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a list of smart match entries.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The smart match entries.</value>
 | 
						|
        public SmartMatchInfo[] SmartMatchInfos { get; set; }
 | 
						|
 | 
						|
        public AutoOrganizeOptions()
 | 
						|
        {
 | 
						|
            TvOptions = new TvFileOrganizationOptions();
 | 
						|
            SmartMatchInfos = new SmartMatchInfo[]{};
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |