diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-13 20:57:13 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-13 20:57:13 -0400 |
| commit | 18d34f953b4639240b92b373b3f660e87a1e55b5 (patch) | |
| tree | 6239f7c1d4dda14da04cd8dab9d04ca3193f3c2d /Jellyfin.Data/Events | |
| parent | ca1f15af19e26f8f610a7b56cd6b15a6a308a58f (diff) | |
Migrate ActivityLogEntryPoint.OnUserCreated to IEventConsumer
Diffstat (limited to 'Jellyfin.Data/Events')
| -rw-r--r-- | Jellyfin.Data/Events/Users/UserCreatedEventArgs.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Data/Events/Users/UserCreatedEventArgs.cs b/Jellyfin.Data/Events/Users/UserCreatedEventArgs.cs new file mode 100644 index 000000000..66f7c8d4f --- /dev/null +++ b/Jellyfin.Data/Events/Users/UserCreatedEventArgs.cs @@ -0,0 +1,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) + { + } + } +} |
