aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs')
-rw-r--r--Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs b/Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs
new file mode 100644
index 000000000..087ec9ab6
--- /dev/null
+++ b/Jellyfin.Data/Events/Users/UserPasswordChangedEventArgs.cs
@@ -0,0 +1,18 @@
+using Jellyfin.Data.Entities;
+
+namespace Jellyfin.Data.Events.Users
+{
+ /// <summary>
+ /// An event that occurs when a user's password has changed.
+ /// </summary>
+ public class UserPasswordChangedEventArgs : GenericEventArgs<User>
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="UserPasswordChangedEventArgs"/> class.
+ /// </summary>
+ /// <param name="arg">The user.</param>
+ public UserPasswordChangedEventArgs(User arg) : base(arg)
+ {
+ }
+ }
+}