using Jellyfin.Data.Entities; namespace Jellyfin.Data.Events.Users { /// /// An event that occurs when a user's password has changed. /// public class UserPasswordChangedEventArgs : GenericEventArgs { /// /// Initializes a new instance of the class. /// /// The user. public UserPasswordChangedEventArgs(User arg) : base(arg) { } } }