2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2019-01-13 12:26:15 -07:00
|
|
|
using MediaBrowser.Model.Dlna;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Session
|
|
|
|
{
|
|
|
|
public class ClientCapabilities
|
|
|
|
{
|
|
|
|
public string[] PlayableMediaTypes { get; set; }
|
|
|
|
|
|
|
|
public string[] SupportedCommands { get; set; }
|
|
|
|
|
|
|
|
public bool SupportsMediaControl { get; set; }
|
|
|
|
public bool SupportsContentUploading { get; set; }
|
|
|
|
public string MessageCallbackUrl { get; set; }
|
|
|
|
|
|
|
|
public bool SupportsPersistentIdentifier { get; set; }
|
|
|
|
public bool SupportsSync { get; set; }
|
|
|
|
|
|
|
|
public DeviceProfile DeviceProfile { get; set; }
|
|
|
|
|
|
|
|
public string AppStoreUrl { get; set; }
|
|
|
|
public string IconUrl { get; set; }
|
|
|
|
|
|
|
|
public ClientCapabilities()
|
|
|
|
{
|
2018-12-27 14:43:48 -07:00
|
|
|
PlayableMediaTypes = Array.Empty<string>();
|
|
|
|
SupportedCommands = Array.Empty<string>();
|
2018-12-27 16:27:57 -07:00
|
|
|
SupportsPersistentIdentifier = true;
|
|
|
|
}
|
|
|
|
}
|
2018-12-27 14:43:48 -07:00
|
|
|
}
|