jellyfin/MediaBrowser.Model/Session/ClientCapabilities.cs

32 lines
898 B
C#
Raw Normal View History

using System;
using MediaBrowser.Model.Dlna;
2018-12-28 00:27:57 +01: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 22:43:48 +01:00
PlayableMediaTypes = Array.Empty<string>();
SupportedCommands = Array.Empty<string>();
2018-12-28 00:27:57 +01:00
SupportsPersistentIdentifier = true;
}
}
2018-12-27 22:43:48 +01:00
}