mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
13 lines
296 B
C#
13 lines
296 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; }
|
|
}
|