IW4M-Admin/SharedLibraryCore/Events/Server/ClientDataUpdateEvent.cs

10 lines
244 B
C#
Raw Normal View History

2023-02-11 22:03:35 -05:00
using System.Collections.Generic;
using SharedLibraryCore.Database.Models;
namespace SharedLibraryCore.Events.Server;
public class ClientDataUpdateEvent : GameServerEvent
{
public IReadOnlyCollection<EFClient> Clients { get; init; }
}