📄 ApiErrorResponse.cs
1 2 3 4 5 6 7 8 9
namespace Walley.Checkout.Api.Models;

public class ApiErrorResponse
{
    public string Message { get; set; } = string.Empty;
    public string? Detail { get; set; }
    public int StatusCode { get; set; }
}