diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2023-07-29 13:50:55 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2023-07-29 13:50:55 +0200 |
| commit | 4bb17039d70683e8a159db92823fed6d992e2fe4 (patch) | |
| tree | 5681736dea00dcb26505ff27ae40df0a7885e8b7 /MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs | |
| parent | 368f9202ce0048b92b3b43ea78a96486f9cd23c4 (diff) | |
Apply review suggestions
Diffstat (limited to 'MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs')
| -rw-r--r-- | MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs b/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs index 5564fa1ce..357ef9406 100644 --- a/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs +++ b/MediaBrowser.Controller/Events/Authentication/AuthenticationResultEventArgs.cs @@ -1,3 +1,4 @@ +using System; using MediaBrowser.Controller.Authentication; using MediaBrowser.Controller.Session; using MediaBrowser.Model.Dto; @@ -7,7 +8,7 @@ namespace MediaBrowser.Controller.Events.Authentication; /// <summary> /// A class representing an authentication result event. /// </summary> -public class AuthenticationResultEventArgs +public class AuthenticationResultEventArgs : EventArgs { /// <summary> /// Initializes a new instance of the <see cref="AuthenticationResultEventArgs"/> class. |
