namespace Shared.Models.Responses; public sealed class ErrorResponse { public string Error { get; init; } = string.Empty; public string? Code { get; init; } public string? Detail { get; init; } public double? Score { get; init; } }