jellyfin/MediaBrowser.Model/Session/SessionCapabilities.cs
2014-04-02 17:55:19 -04:00

18 lines
413 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 SessionCapabilities()
{
PlayableMediaTypes = new List<string>();
SupportedCommands = new List<string>();
}
}
}