diff options
Diffstat (limited to 'MediaBrowser.Model/Configuration/MediaPathInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/MediaPathInfo.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/MediaPathInfo.cs b/MediaBrowser.Model/Configuration/MediaPathInfo.cs new file mode 100644 index 000000000..a7bc43590 --- /dev/null +++ b/MediaBrowser.Model/Configuration/MediaPathInfo.cs @@ -0,0 +1,22 @@ +#pragma warning disable CS1591 + +namespace MediaBrowser.Model.Configuration +{ + public class MediaPathInfo + { + public MediaPathInfo(string path) + { + Path = path; + } + + // Needed for xml serialization + public MediaPathInfo() + { + Path = string.Empty; + } + + public string Path { get; set; } + + public string? NetworkPath { get; set; } + } +} |
