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