jellyfin-server/MediaBrowser.Model/Configuration/MediaPathInfo.cs
2021-08-28 17:32:09 +02:00

17 lines
301 B
C#

#pragma warning disable CS1591
namespace MediaBrowser.Model.Configuration
{
public class MediaPathInfo
{
public MediaPathInfo(string path)
{
Path = path;
}
public string Path { get; set; }
public string? NetworkPath { get; set; }
}
}