#nullable enable #pragma warning disable CS1591 #pragma warning disable CA1819 using System; using System.Collections.Generic; using MediaBrowser.Model.Dto; using MediaBrowser.Model.Updates; 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; } }