2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2020-11-21 11:37:22 -07:00
|
|
|
using System.Collections.Generic;
|
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
|
|
|
|
{
|
2021-02-20 15:13:04 -07:00
|
|
|
public ClientCapabilities()
|
|
|
|
{
|
|
|
|
PlayableMediaTypes = Array.Empty<string>();
|
|
|
|
SupportedCommands = Array.Empty<GeneralCommandType>();
|
|
|
|
SupportsPersistentIdentifier = true;
|
|
|
|
}
|
|
|
|
|
2020-11-21 11:37:22 -07:00
|
|
|
public IReadOnlyList<string> PlayableMediaTypes { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2020-11-21 11:37:22 -07:00
|
|
|
public IReadOnlyList<GeneralCommandType> SupportedCommands { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
public bool SupportsMediaControl { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool SupportsContentUploading { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string MessageCallbackUrl { get; set; }
|
|
|
|
|
|
|
|
public bool SupportsPersistentIdentifier { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool SupportsSync { get; set; }
|
|
|
|
|
|
|
|
public DeviceProfile DeviceProfile { get; set; }
|
|
|
|
|
|
|
|
public string AppStoreUrl { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string IconUrl { get; set; }
|
|
|
|
}
|
2018-12-27 14:43:48 -07:00
|
|
|
}
|