jellyfin/MediaBrowser.Model/Configuration/MediaPathInfo.cs

17 lines
301 B
C#
Raw Normal View History

#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;
}
public string Path { get; set; }
2021-08-28 17:32:09 +02:00
public string? NetworkPath { get; set; }
}
}