10 lines
249 B
C#
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; }
|
|
}
|