mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
12 lines
No EOL
297 B
C#
12 lines
No EOL
297 B
C#
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; }
|
|
}
|
|
} |