diff options
| author | cvium <clausvium@gmail.com> | 2020-11-08 16:10:33 +0100 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2020-11-08 16:10:33 +0100 |
| commit | e78c63c4dc819867acddc5a15a7d7c02f7aa9b30 (patch) | |
| tree | b12386dc99328bd40bfcbf82eeea628eb8d77ad3 /MediaBrowser.Controller/Net | |
| parent | 96dcd9c87e2eb4b14004368856949e9fde2db261 (diff) | |
Remove OriginalAuthenticationInfo and add IsAuthenticated property
Diffstat (limited to 'MediaBrowser.Controller/Net')
| -rw-r--r-- | MediaBrowser.Controller/Net/AuthorizationInfo.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Net/AuthorizationInfo.cs b/MediaBrowser.Controller/Net/AuthorizationInfo.cs index 5c642edff..0194c596f 100644 --- a/MediaBrowser.Controller/Net/AuthorizationInfo.cs +++ b/MediaBrowser.Controller/Net/AuthorizationInfo.cs @@ -53,5 +53,10 @@ namespace MediaBrowser.Controller.Net /// Gets or sets the user making the request. /// </summary> public User User { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether the token is authenticated. + /// </summary> + public bool IsAuthenticated { get; set; } } } |
