mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-18 21:50:25 +01:00
fixes #712 - multi-version grouping
This commit is contained in:
15
MediaBrowser.Model/Session/SessionCapabilities.cs
Normal file
15
MediaBrowser.Model/Session/SessionCapabilities.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
namespace MediaBrowser.Model.Session
|
||||
{
|
||||
public class SessionCapabilities
|
||||
{
|
||||
public string[] PlayableMediaTypes { get; set; }
|
||||
|
||||
public bool SupportsFullscreenToggle { get; set; }
|
||||
|
||||
public SessionCapabilities()
|
||||
{
|
||||
PlayableMediaTypes = new string[] {};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user