mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 16:33:25 -03:00
19 lines
516 B
C#
19 lines
516 B
C#
using Jellyfin.Database.Implementations.Entities;
|
|
|
|
namespace Jellyfin.Data.Events.Users
|
|
{
|
|
/// <summary>
|
|
/// An event that occurs when a user is updated.
|
|
/// </summary>
|
|
public class UserUpdatedEventArgs : GenericEventArgs<User>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UserUpdatedEventArgs"/> class.
|
|
/// </summary>
|
|
/// <param name="arg">The user.</param>
|
|
public UserUpdatedEventArgs(User arg) : base(arg)
|
|
{
|
|
}
|
|
}
|
|
}
|