9 lines
237 B
C#
Raw Normal View History

2023-02-11 21:03:35 -06:00
using System.Collections.Generic;
namespace SharedLibraryCore.Events.Game;
public class MatchStartEvent : GameEventV2
{
public IReadOnlyDictionary<string, string> SessionData { get; init; } = new Dictionary<string, string>();
}