jellyfin/MediaBrowser.Model/Session/ClientCapabilities.cs
2014-05-08 16:26:20 -04:00

16 lines
409 B
C#

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