17 lines
356 B
C#
17 lines
356 B
C#
using System.Text.Json.Nodes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace LeagueAPI;
|
|
|
|
public record class LcuApiEvent
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public JsonNode? Data { get; init; }
|
|
|
|
[JsonPropertyName("eventType")]
|
|
public string? EventType { get; init; }
|
|
|
|
[JsonPropertyName("uri")]
|
|
public string? Uri { get; init; }
|
|
}
|