mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Update to 3.5.2 and .net core 2.1
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
using MediaBrowser.Model.Dlna;
|
||||
using System.Collections.Generic;
|
||||
|
||||
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[] SupportedLiveMediaTypes { get; set; }
|
||||
|
||||
public string AppStoreUrl { get; set; }
|
||||
public string IconUrl { get; set; }
|
||||
|
||||
public ClientCapabilities()
|
||||
{
|
||||
PlayableMediaTypes = new string[] { };
|
||||
SupportedCommands = new string[] { };
|
||||
SupportsPersistentIdentifier = true;
|
||||
SupportedLiveMediaTypes = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user