mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
10 lines
265 B
C#
10 lines
265 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace CleanArchitecture.Api.Models;
|
|
|
|
public sealed class DetailedError
|
|
{
|
|
[JsonPropertyName("code")] public string Code { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("data")] public object? Data { get; init; }
|
|
} |