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