mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
11 lines
237 B
C#
11 lines
237 B
C#
using Data.Models;
|
|
using Data.Models.Client;
|
|
|
|
namespace SharedLibraryCore.Events.Management;
|
|
|
|
public class ClientPenaltyEvent : ManagementEvent
|
|
{
|
|
public EFClient Client { get; init; }
|
|
public EFPenalty Penalty { get; init; }
|
|
}
|