2014-04-02 21:55:19 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2014-03-21 03:31:40 +00:00
|
|
|
|
namespace MediaBrowser.Model.Session
|
|
|
|
|
{
|
|
|
|
|
public class SessionCapabilities
|
|
|
|
|
{
|
2014-04-02 21:55:19 +00:00
|
|
|
|
public List<string> PlayableMediaTypes { get; set; }
|
2014-03-21 03:31:40 +00:00
|
|
|
|
|
2014-04-02 21:55:19 +00:00
|
|
|
|
public List<string> SupportedCommands { get; set; }
|
2014-03-22 03:35:03 +00:00
|
|
|
|
|
2014-05-17 18:37:40 +00:00
|
|
|
|
public bool SupportsMediaControl { get; set; }
|
|
|
|
|
|
2014-05-18 19:58:42 +00:00
|
|
|
|
public string MessageCallbackUrl { get; set; }
|
|
|
|
|
|
2014-03-21 03:31:40 +00:00
|
|
|
|
public SessionCapabilities()
|
|
|
|
|
{
|
2014-04-02 21:55:19 +00:00
|
|
|
|
PlayableMediaTypes = new List<string>();
|
|
|
|
|
SupportedCommands = new List<string>();
|
2014-03-21 03:31:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|