Changes
Build and Push Docker Images / build (push) Failing after 0s

This commit is contained in:
2026-05-08 13:46:25 +03:00
parent 86d4d2af06
commit 51e668bf1d
10 changed files with 84 additions and 44 deletions
+9
View File
@@ -0,0 +1,9 @@
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; }
}