mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 10:32:09 +08:00
13 lines
299 B
C#
13 lines
299 B
C#
using System.Text.Json.Serialization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BuildingBlocks.Exception;
|
|
|
|
using ProblemDetails = Microsoft.AspNetCore.Mvc.ProblemDetails;
|
|
|
|
public class ProblemDetailsWithCode : ProblemDetails
|
|
{
|
|
[JsonPropertyName("code")]
|
|
public int? Code { get; set; }
|
|
}
|