namespace MediaBrowser.Model.Configuration
{
    /// 
    /// Defines the .
    /// 
    public class PathSubstitution
    {
        /// 
        /// Gets or sets the value to substitute.
        /// 
        public string From { get; set; } = string.Empty;
        /// 
        /// Gets or sets the value to substitution with.
        /// 
        public string To { get; set; } = string.Empty;
    }
}