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-21 23:35:03 -04:00
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|