aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/PathSubstitution.cs
blob: 2c9b5f005c8422516ad52c2d7a263e8be94a1ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
    }
}