mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
10 lines
244 B
C#
10 lines
244 B
C#
using System.Collections.Generic;
|
|
using SharedLibraryCore.Database.Models;
|
|
|
|
namespace SharedLibraryCore.Events.Server;
|
|
|
|
public class ClientDataUpdateEvent : GameServerEvent
|
|
{
|
|
public IReadOnlyCollection<EFClient> Clients { get; init; }
|
|
}
|