disable nuget package restore

This commit is contained in:
Luke Pulverenti
2014-10-18 15:02:54 -04:00
parent 76cabe8226
commit f1a602f5a8
32 changed files with 218 additions and 151 deletions

View File

@@ -0,0 +1,17 @@
namespace MediaBrowser.Model.Connect
{
public class ConnectAuthenticationExchangeResult
{
/// <summary>
/// Gets or sets the local user identifier.
/// </summary>
/// <value>The local user identifier.</value>
public string LocalUserId { get; set; }
/// <summary>
/// Gets or sets the access token.
/// </summary>
/// <value>The access token.</value>
public string AccessToken { get; set; }
}
}