diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-09-19 09:04:01 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-19 09:04:01 -0600 |
| commit | b8ccf7fa709ee4044f8853c982f11be8695caf85 (patch) | |
| tree | d41bc05adc7a061574ddcde06f4702a86bf01e96 /MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs | |
| parent | 93db8990d951649c1d25003e2859776ac80e7440 (diff) | |
| parent | d4bde14a0143ae60db5187084dbb8cbf93e77cfd (diff) | |
Merge pull request #12587 from Shadowghost/session-info-dto
Diffstat (limited to 'MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs')
| -rw-r--r-- | MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs b/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs index 357ef9406..1542c58b3 100644 --- a/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs +++ b/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs @@ -1,6 +1,5 @@ using System; using MediaBrowser.Controller.Authentication; -using MediaBrowser.Controller.Session; using MediaBrowser.Model.Dto; namespace MediaBrowser.Controller.Events.Authentication; @@ -29,7 +28,7 @@ public class AuthenticationResultEventArgs : EventArgs /// <summary> /// Gets or sets the session information. /// </summary> - public SessionInfo? SessionInfo { get; set; } + public SessionInfoDto? SessionInfo { get; set; } /// <summary> /// Gets or sets the server id. |
