mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
13 lines
234 B
C#
13 lines
234 B
C#
|
using Remora.Discord.API;
|
|||
|
using Remora.Rest.Core;
|
|||
|
|
|||
|
namespace Octobot.Extensions;
|
|||
|
|
|||
|
public static class UInt64Extensions
|
|||
|
{
|
|||
|
public static Snowflake ToSnowflake(this ulong id)
|
|||
|
{
|
|||
|
return DiscordSnowflake.New(id);
|
|||
|
}
|
|||
|
}
|