jellyfin-server/MediaBrowser.Model/Session/SessionCapabilities.cs
Luke Pulverenti 715119b525 updated nuget
2014-05-17 14:37:40 -04:00

20 lines
469 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
public class SessionCapabilities
{
public List<string> PlayableMediaTypes { get; set; }
public List<string> SupportedCommands { get; set; }
public bool SupportsMediaControl { get; set; }
public SessionCapabilities()
{
PlayableMediaTypes = new List<string>();
SupportedCommands = new List<string>();
}
}
}