Fix invalid types for some discord webhook values (#19515)

This commit is contained in:
DrSmugleaf
2023-08-24 22:59:43 -07:00
committed by GitHub
parent 0326badcb7
commit 4daabaae05
4 changed files with 8 additions and 8 deletions

View File

@@ -1,3 +1,3 @@
namespace Content.Server.Discord;
public record struct WebhookIdentifier(ulong Id, string Token);
public record struct WebhookIdentifier(string Id, string Token);