jellyfin/MediaBrowser.Model/Session/ClientCapabilities.cs

34 lines
930 B
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dlna;
2018-12-27 18:27:57 -05: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 16:43:48 -05:00
PlayableMediaTypes = Array.Empty<string>();
SupportedCommands = Array.Empty<string>();
2018-12-27 18:27:57 -05:00
SupportsPersistentIdentifier = true;
}
}
2018-12-27 16:43:48 -05:00
}