mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Migrate ActivityLogEntryPoint.OnUserDeleted to IEventConsumer
This commit is contained in:
18
Jellyfin.Data/Events/Users/UserDeletedEventArgs.cs
Normal file
18
Jellyfin.Data/Events/Users/UserDeletedEventArgs.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Jellyfin.Data.Entities;
|
||||
|
||||
namespace Jellyfin.Data.Events.Users
|
||||
{
|
||||
/// <summary>
|
||||
/// An event that occurs when a user is deleted.
|
||||
/// </summary>
|
||||
public class UserDeletedEventArgs : GenericEventArgs<User>
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="UserDeletedEventArgs"/> class.
|
||||
/// </summary>
|
||||
/// <param name="arg">The user.</param>
|
||||
public UserDeletedEventArgs(User arg) : base(arg)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user