blob: 4f311c58f071e4f5bb9810f7692d560798dddc7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.Configuration
{
public class MediaPathInfo
{
public string Path { get; set; }
public string NetworkPath { get; set; }
}
}
|