diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-02-07 19:32:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-07 19:32:17 +0100 |
| commit | e50170a417db57245a89238e51b535055b8b0d22 (patch) | |
| tree | 60b8fa8af1ccc1c2bfbde7867f0c2a0d344529af /MediaBrowser.Model/Session/ClientCapabilities.cs | |
| parent | 143ef71528eb7adfe87cd3dcb746ac655fb0aef8 (diff) | |
| parent | be29b4a0c4e0a525da0a8537810d11586cec9b67 (diff) | |
Merge pull request #10973 from nielsvanvelzen/api-dep-fixes
Fix some incompatible API deprecations
Diffstat (limited to 'MediaBrowser.Model/Session/ClientCapabilities.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/ClientCapabilities.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/ClientCapabilities.cs b/MediaBrowser.Model/Session/ClientCapabilities.cs index 597845fc1..5f51fb21c 100644 --- a/MediaBrowser.Model/Session/ClientCapabilities.cs +++ b/MediaBrowser.Model/Session/ClientCapabilities.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; +using System.ComponentModel; using Jellyfin.Data.Enums; using MediaBrowser.Model.Dlna; @@ -30,5 +31,15 @@ namespace MediaBrowser.Model.Session public string AppStoreUrl { get; set; } public string IconUrl { get; set; } + + // TODO: Remove after 10.9 + [Obsolete("Unused")] + [DefaultValue(false)] + public bool? SupportsContentUploading { get; set; } + + // TODO: Remove after 10.9 + [Obsolete("Unused")] + [DefaultValue(false)] + public bool? SupportsSync { get; set; } } } |
