2021-08-27 11:03:47 -04:00
|
|
|
using Myriad.Types;
|
2021-07-15 12:41:19 +02:00
|
|
|
|
2021-11-26 21:10:56 -05:00
|
|
|
namespace Myriad.Gateway;
|
|
|
|
|
|
|
|
public record ThreadDeleteEvent: IGatewayEvent
|
2021-07-15 12:41:19 +02:00
|
|
|
{
|
2021-11-26 21:10:56 -05:00
|
|
|
public ulong Id { get; init; }
|
|
|
|
public ulong? GuildId { get; init; }
|
|
|
|
public ulong? ParentId { get; init; }
|
|
|
|
public Channel.ChannelType Type { get; init; }
|
2021-07-15 12:41:19 +02:00
|
|
|
}
|