diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-20 00:19:13 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-20 00:19:13 -0500 |
| commit | 1d5f1bc474c3d685e04f409b956ccc431cd05ee5 (patch) | |
| tree | 85eb6e1a2292d580456f1eaf79052ae4f3a6555e /MediaBrowser.Model/Session/ClientCapabilities.cs | |
| parent | 4ea72584dbba2a425daeb20d8afcbae720f22269 (diff) | |
sync updates
Diffstat (limited to 'MediaBrowser.Model/Session/ClientCapabilities.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/ClientCapabilities.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Session/ClientCapabilities.cs b/MediaBrowser.Model/Session/ClientCapabilities.cs index 5a806a867..6c1b6e8b2 100644 --- a/MediaBrowser.Model/Session/ClientCapabilities.cs +++ b/MediaBrowser.Model/Session/ClientCapabilities.cs @@ -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; } } }
\ No newline at end of file |
