Files
myAi/Apis/shared-models/Responses/ErrorResponse.cs
T
claude 75bc9509c5
Build and Push Docker Images / build (push) Successful in 4m35s
Changes
2026-05-14 14:12:29 +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; }
}