LANCommander/LANCommander.SDK/Plugins/Events/AuthenticationEvents.cs
2026-07-23 19:47:22 -05:00

9 lines
319 B
C#

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);