Files
jellyfin-jellyfin-1/MediaBrowser.Model/Session/SessionCapabilities.cs

18 lines
413 B
C#
Raw Normal View History

2014-04-02 17:55:19 -04:00
using System.Collections.Generic;
2014-03-20 23:31:40 -04:00
namespace MediaBrowser.Model.Session
{
public class SessionCapabilities
{
2014-04-02 17:55:19 -04:00
public List<string> PlayableMediaTypes { get; set; }
2014-03-20 23:31:40 -04:00
2014-04-02 17:55:19 -04:00
public List<string> SupportedCommands { get; set; }
2014-03-20 23:31:40 -04:00
public SessionCapabilities()
{
2014-04-02 17:55:19 -04:00
PlayableMediaTypes = new List<string>();
SupportedCommands = new List<string>();
2014-03-20 23:31:40 -04:00
}
}
}