Files
Minecraft-Realms-Emulator/Minecraft-Realms-Emulator/Shared/Responses/ErrorResponse.cs

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