jellyfin/MediaBrowser.Model/Session/SessionCapabilities.cs

20 lines
441 B
C#
Raw Normal View History

2014-03-21 04:31:40 +01:00

namespace MediaBrowser.Model.Session
{
public class SessionCapabilities
{
public string[] PlayableMediaTypes { get; set; }
public bool SupportsFullscreenToggle { get; set; }
public bool SupportsOsdToggle { get; set; }
public bool SupportsNavigationControl { get; set; }
2014-03-21 04:31:40 +01:00
public SessionCapabilities()
{
PlayableMediaTypes = new string[] {};
}
}
}