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