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

9 lines
237 B
C#

using System.Collections.Generic;
namespace SharedLibraryCore.Events.Game;
public class MatchStartEvent : GameEventV2
{
public IReadOnlyDictionary<string, string> SessionData { get; init; } = new Dictionary<string, string>();
}