PluralKit/Myriad/Gateway/Events/ThreadDeleteEvent.cs

11 lines
267 B
C#
Raw Normal View History

2021-08-27 15:03:47 +00:00
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; }
}