Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/Structures/Rest/Error.cs

19 lines
362 B
C#

using Newtonsoft.Json;
namespace Maki.Structures.Rest
{
internal struct Error
{
/// <summary>
/// Error code
/// </summary>
[JsonProperty("code")]
public uint Code;
/// <summary>
/// Error message
/// </summary>
[JsonProperty("message")]
public string Message;
}
}