using Jellyfin.Data.Entities; namespace Jellyfin.Data.Events.Users { /// /// An event that occurs when a user is updated. /// public class UserUpdatedEventArgs : GenericEventArgs { /// /// Initializes a new instance of the class. /// /// The user. public UserUpdatedEventArgs(User arg) : base(arg) { } } }