You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
511 B
21 lines
511 B
4 years ago
|
#nullable enable
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|