mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
15 lines
319 B
C#
15 lines
319 B
C#
namespace SharedLibraryCore.Events.Management;
|
|
|
|
public class LoginEvent : ManagementEvent
|
|
{
|
|
public enum LoginSourceType
|
|
{
|
|
Ingame,
|
|
Webfront
|
|
}
|
|
|
|
public string EntityId { get; init; }
|
|
public string Identifier { get; init; }
|
|
public LoginSourceType LoginSource { get; init; }
|
|
}
|