jellyfin/MediaBrowser.Model/Session/SessionCapabilities.cs

22 lines
525 B
C#
Raw Normal View History

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