Fixed merge.

This commit is contained in:
Greenback
2020-11-21 14:05:09 +00:00
5 changed files with 253 additions and 3 deletions

View File

@@ -9,11 +9,19 @@ using MediaBrowser.Model.Updates;
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;
}
}