jellyfin/MediaBrowser.Model/Configuration/MediaPathInfo.cs

23 lines
426 B
C#
Raw Normal View History

#pragma warning disable CS1591
namespace MediaBrowser.Model.Configuration
{
public class MediaPathInfo
{
2021-08-28 11:32:09 -04:00
public MediaPathInfo(string path)
{
Path = path;
}
// Needed for xml serialization
public MediaPathInfo()
{
Path = string.Empty;
}
public string Path { get; set; }
2021-08-28 11:32:09 -04:00
public string? NetworkPath { get; set; }
}
}