Migrate ServerEventNotifier.OnUserUpdated to IEventConsumer

This commit is contained in:
Patrick Barron
2020-08-15 18:16:20 -04:00
parent ee5d4b1146
commit a0453a0fe6
5 changed files with 63 additions and 46 deletions

View File

@@ -0,0 +1,18 @@
using Jellyfin.Data.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)
{
}
}
}