mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			493 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			493 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Configuration
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Defines the <see cref="PathSubstitution" />.
 | 
						|
    /// </summary>
 | 
						|
    public class PathSubstitution
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the value to substitute.
 | 
						|
        /// </summary>
 | 
						|
        public string From { get; set; } = string.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the value to substitution with.
 | 
						|
        /// </summary>
 | 
						|
        public string To { get; set; } = string.Empty;
 | 
						|
    }
 | 
						|
}
 |