2021-02-20 23:13:04 +01:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class MediaPathInfo
|
|
|
|
|
{
|
2021-08-28 17:32:09 +02:00
|
|
|
public MediaPathInfo(string path)
|
|
|
|
|
{
|
|
|
|
|
Path = path;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-03 16:39:03 +02:00
|
|
|
// Needed for xml serialization
|
|
|
|
|
public MediaPathInfo()
|
|
|
|
|
{
|
|
|
|
|
Path = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-20 23:13:04 +01:00
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
2021-08-28 17:32:09 +02:00
|
|
|
public string? NetworkPath { get; set; }
|
2021-02-20 23:13:04 +01:00
|
|
|
}
|
|
|
|
|
}
|