Files
myAi/shared-models/Responses/ErrorResponse.cs
T
claude 51e668bf1d
Build and Push Docker Images / build (push) Failing after 0s
Changes
2026-05-08 13:46:25 +03:00

10 lines
249 B
C#

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