updated nuget

This commit is contained in:
Luke Pulverenti
2014-01-05 01:25:46 -05:00
parent 1ed03b0bb3
commit 178d216b28
5 changed files with 24 additions and 5 deletions

View File

@@ -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>();
}
}
}