mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-01 13:38:35 -04:00
9 lines
207 B
C#
9 lines
207 B
C#
namespace Minecraft_Realms_Emulator.Shared.Responses
|
|
{
|
|
public class ErrorResponse
|
|
{
|
|
public int ErrorCode { get; set; }
|
|
public string ErrorMsg { get; set; } = string.Empty;
|
|
}
|
|
}
|