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