blob: efe2635cd33f3949308cdf731e5c1f789c55e469 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace MediaBrowser.Controller.Providers
{
public class GameSystemInfo : ItemLookupInfo
{
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
}
}
|