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

    public class PathSubstitution
    {
        public string From { get; set; } = string.Empty;

        public string To { get; set; } = string.Empty;
    }
}