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;
}
}