aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-18 15:02:54 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-18 15:02:54 -0400
commitf1a602f5a87f666eec03b9afd3f3edfa27d337f6 (patch)
tree25cca82b4b125104654282ebdc47814d6f322349 /MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs
parent76cabe82269ff92d5950b8cf738c00976ca60e93 (diff)
disable nuget package restore
Diffstat (limited to 'MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs')
-rw-r--r--MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs b/MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs
new file mode 100644
index 000000000..c60224045
--- /dev/null
+++ b/MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs
@@ -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; }
+ }
+}