IW4M-Admin/SharedLibraryCore/Events/Server/ClientDataUpdateEvent.cs
2023-02-11 21:03:35 -06:00

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