aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/SessionCapabilities.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-11 16:38:13 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-11 16:38:13 -0400
commitf3539686bd7ff6c748a0a9441086538081fa8903 (patch)
tree84b6a6e89fddb206d3b8cc503423876e45100fa9 /MediaBrowser.Model/Session/SessionCapabilities.cs
parent2486cffa7171629d09857981b8987727642f6f02 (diff)
add device upload options
Diffstat (limited to 'MediaBrowser.Model/Session/SessionCapabilities.cs')
-rw-r--r--MediaBrowser.Model/Session/SessionCapabilities.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/MediaBrowser.Model/Session/SessionCapabilities.cs b/MediaBrowser.Model/Session/SessionCapabilities.cs
deleted file mode 100644
index 767df8f1c1..0000000000
--- 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>();
- }
- }
-}