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

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