mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-07-01 17:49:43 -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;
|
|
}
|
|
}
|