Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Providers/GameSystemInfo.cs

11 lines
266 B
C#
Raw Normal View History

2015-03-13 15:37:19 -04:00
namespace MediaBrowser.Controller.Providers
{
public class GameSystemInfo : ItemLookupInfo
{
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
}
}