diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-11 16:38:13 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-11 16:38:13 -0400 |
| commit | f3539686bd7ff6c748a0a9441086538081fa8903 (patch) | |
| tree | 84b6a6e89fddb206d3b8cc503423876e45100fa9 /MediaBrowser.Model/Session | |
| parent | 2486cffa7171629d09857981b8987727642f6f02 (diff) | |
add device upload options
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/ClientCapabilities.cs | 7 | ||||
| -rw-r--r-- | MediaBrowser.Model/Session/SessionCapabilities.cs | 21 |
2 files changed, 7 insertions, 21 deletions
diff --git a/MediaBrowser.Model/Session/ClientCapabilities.cs b/MediaBrowser.Model/Session/ClientCapabilities.cs index 5bee06087..cbc1501d2 100644 --- a/MediaBrowser.Model/Session/ClientCapabilities.cs +++ b/MediaBrowser.Model/Session/ClientCapabilities.cs @@ -5,8 +5,15 @@ namespace MediaBrowser.Model.Session public class ClientCapabilities { public List<string> PlayableMediaTypes { get; set; } + public List<string> SupportedCommands { get; set; } + public bool SupportsMediaControl { get; set; } + + public string MessageCallbackUrl { get; set; } + + public bool SupportsContentUploading { get; set; } + public ClientCapabilities() { PlayableMediaTypes = new List<string>(); diff --git a/MediaBrowser.Model/Session/SessionCapabilities.cs b/MediaBrowser.Model/Session/SessionCapabilities.cs deleted file mode 100644 index 767df8f1c..000000000 --- a/MediaBrowser.Model/Session/SessionCapabilities.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System.Collections.Generic; - -namespace MediaBrowser.Model.Session -{ - public class SessionCapabilities - { - public List<string> PlayableMediaTypes { get; set; } - - public List<string> SupportedCommands { get; set; } - - public bool SupportsMediaControl { get; set; } - - public string MessageCallbackUrl { get; set; } - - public SessionCapabilities() - { - PlayableMediaTypes = new List<string>(); - SupportedCommands = new List<string>(); - } - } -} |
