2021-08-27 15:03:47 +00:00
|
|
|
using System.Text.Json.Serialization;
|
2020-12-22 12:15:26 +00:00
|
|
|
|
|
|
|
using Myriad.Types;
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
namespace Myriad.Gateway;
|
|
|
|
|
|
|
|
public record ReadyEvent: IGatewayEvent
|
2020-12-22 12:15:26 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
[JsonPropertyName("v")] public int Version { get; init; }
|
|
|
|
public User User { get; init; }
|
|
|
|
public string SessionId { get; init; }
|
|
|
|
public ShardInfo? Shard { get; init; }
|
|
|
|
public ApplicationPartial Application { get; init; }
|
2020-12-22 12:15:26 +00:00
|
|
|
}
|