jellyfin/MediaBrowser.Model/Session/ClientCapabilities.cs

40 lines
1 KiB
C#
Raw Normal View History

#nullable disable
2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using MediaBrowser.Model.Dlna;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Session
{
public class ClientCapabilities
{
public ClientCapabilities()
{
PlayableMediaTypes = Array.Empty<string>();
SupportedCommands = Array.Empty<GeneralCommandType>();
SupportsPersistentIdentifier = true;
}
public IReadOnlyList<string> PlayableMediaTypes { get; set; }
2018-12-28 00:27:57 +01:00
public IReadOnlyList<GeneralCommandType> SupportedCommands { get; set; }
2018-12-28 00:27:57 +01:00
public bool SupportsMediaControl { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool SupportsContentUploading { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string MessageCallbackUrl { get; set; }
public bool SupportsPersistentIdentifier { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool SupportsSync { get; set; }
public DeviceProfile DeviceProfile { get; set; }
public string AppStoreUrl { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string IconUrl { get; set; }
}
2018-12-27 22:43:48 +01:00
}