mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
sync updates
This commit is contained in:
@@ -14,16 +14,21 @@ namespace MediaBrowser.Model.Session
|
||||
public string MessageCallbackUrl { get; set; }
|
||||
|
||||
public bool SupportsContentUploading { get; set; }
|
||||
public bool SupportsUniqueIdentifier { get; set; }
|
||||
public bool SupportsPersistentIdentifier { get; set; }
|
||||
public bool SupportsSync { get; set; }
|
||||
|
||||
public DeviceProfile DeviceProfile { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Usage should be migrated to SupportsPersistentIdentifier. Keeping this to preserve data.
|
||||
/// </summary>
|
||||
public bool? SupportsUniqueIdentifier { get; set; }
|
||||
|
||||
public ClientCapabilities()
|
||||
{
|
||||
PlayableMediaTypes = new List<string>();
|
||||
SupportedCommands = new List<string>();
|
||||
SupportsUniqueIdentifier = true;
|
||||
SupportsPersistentIdentifier = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user