From 0200911afc125051b4f5e652ef1bebeca984b571 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 2 Apr 2014 17:55:19 -0400 Subject: add latest translations --- MediaBrowser.Model/Session/SessionCapabilities.cs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'MediaBrowser.Model/Session/SessionCapabilities.cs') diff --git a/MediaBrowser.Model/Session/SessionCapabilities.cs b/MediaBrowser.Model/Session/SessionCapabilities.cs index 7b3b04ce92..290b0e4d47 100644 --- a/MediaBrowser.Model/Session/SessionCapabilities.cs +++ b/MediaBrowser.Model/Session/SessionCapabilities.cs @@ -1,19 +1,17 @@ - +using System.Collections.Generic; + namespace MediaBrowser.Model.Session { public class SessionCapabilities { - public string[] PlayableMediaTypes { get; set; } - - public bool SupportsFullscreenToggle { get; set; } + public List PlayableMediaTypes { get; set; } - public bool SupportsOsdToggle { get; set; } + public List SupportedCommands { get; set; } - public bool SupportsNavigationControl { get; set; } - public SessionCapabilities() { - PlayableMediaTypes = new string[] {}; + PlayableMediaTypes = new List(); + SupportedCommands = new List(); } } } -- cgit v1.2.3