23 lines
639 B
C#
23 lines
639 B
C#
// <copyright file="PathSubstitution.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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;
|
|
}
|
|
}
|