// // Copyright (c) PlaceholderCompany. All rights reserved. // #pragma warning disable SA1128 // Put constructor initializers on their own line namespace Jellyfin.Data.Events.Users { using Jellyfin.Database.Implementations.Entities; /// /// 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) { } } }