PluralKit/Myriad/Gateway/Events/ThreadDeleteEvent.cs

12 lines
300 B
C#
Raw Normal View History

using Myriad.Types;
namespace Myriad.Gateway
{
public record ThreadDeleteEvent: IGatewayEvent
{
public ulong Id { get; init; }
public ulong? GuildId { get; init; }
public ulong? ParentId { get; init; }
public Channel.ChannelType Type { get; init; }
}
}