DiscordChatExporter/DiscordChatExporter.Cli.Tests/TestData/ChannelIds.cs
2021-09-08 01:18:35 +03:00

13 lines
438 B
C#

using DiscordChatExporter.Core.Discord;
namespace DiscordChatExporter.Cli.Tests.TestData
{
public static class ChannelIds
{
public static Snowflake EmbedTestCases { get; } = Snowflake.Parse("866472452459462687");
public static Snowflake MentionTestCases { get; } = Snowflake.Parse("866458801389174794");
public static Snowflake ReplyTestCases { get; } = Snowflake.Parse("866459871934677052");
}
}