diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-05 01:25:46 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-05 01:25:46 -0500 |
| commit | 178d216b28135980c733992ed1cc36e1744d03b7 (patch) | |
| tree | 817d4fc344ef6583f5cb51d875e4d980cf1f438a /MediaBrowser.Model/Session | |
| parent | 1ed03b0bb328e4d5c48c560c06aab55b4c75cd46 (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/SessionInfoDto.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs index dabafad7b..50dd4da67 100644 --- a/MediaBrowser.Model/Session/SessionInfoDto.cs +++ b/MediaBrowser.Model/Session/SessionInfoDto.cs @@ -166,4 +166,14 @@ namespace MediaBrowser.Model.Session /// <value>The name of the user.</value> public string UserName { get; set; } } + + public class ClientCapabilities + { + public List<string> PlayableMediaTypes { get; set; } + + public ClientCapabilities() + { + PlayableMediaTypes = new List<string>(); + } + } } |
