mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
8 lines
No EOL
154 B
C#
8 lines
No EOL
154 B
C#
using System.Text.Json;
|
|
|
|
namespace Myriad.Rest;
|
|
|
|
public record DiscordApiError(string Message, int Code)
|
|
{
|
|
public JsonElement? Errors { get; init; }
|
|
} |