LANCommander/LANCommander.SDK/Plugins/Events/AuthenticationEvents.cs

10 lines
319 B
C#
Raw Permalink Normal View History

using System;
namespace LANCommander.SDK.Plugins.Events;
/// <summary>Raised after a user successfully logs in.</summary>
public sealed record UserLoggedInEvent(Guid UserId, string UserName);
/// <summary>Raised after a user logs out.</summary>
public sealed record UserLoggedOutEvent(Guid UserId, string UserName);