PluralKit/Myriad/Extensions/ChannelExtensions.cs

16 lines
521 B
C#
Raw Normal View History

using Myriad.Types;
namespace Myriad.Extensions
2020-12-22 12:15:26 +00:00
{
public static class ChannelExtensions
{
public static string Mention(this Channel channel) => $"<#{channel.Id}>";
public static bool IsThread(this Channel channel) => channel.Type.IsThread();
public static bool IsThread(this Channel.ChannelType type) =>
type is Channel.ChannelType.GuildPublicThread
or Channel.ChannelType.GuildPrivateThread
or Channel.ChannelType.GuildNewsThread;
2020-12-22 12:15:26 +00:00
}
}