1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
2023-02-11 21:03:35 -06:00

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