Path: blob/trunk/third_party/dotnet/devtools/src/generator/CodeGen/EventInfo.cs
4503 views
namespace OpenQA.Selenium.DevToolsGenerator.CodeGen
{
/// <summary>
/// Represents information about a Chrome Debugger Protocol event.
/// </summary>
public sealed class EventInfo(string eventName, string fullTypeName)
{
public string EventName { get; } = eventName;
public string FullTypeName { get; } = fullTypeName;
}
}