aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Events/Users/UserLockedOutEventArgs.cs
blob: 46b399d26d855bd99c36b26b0c7061341e947179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Jellyfin.Database.Implementations.Entities;

namespace Jellyfin.Data.Events.Users
{
    /// <summary>
    /// An event that occurs when a user is locked out.
    /// </summary>
    public class UserLockedOutEventArgs : GenericEventArgs<User>
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="UserLockedOutEventArgs"/> class.
        /// </summary>
        /// <param name="arg">The user.</param>
        public UserLockedOutEventArgs(User arg) : base(arg)
        {
        }
    }
}