mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 19:12:57 +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; }
|
|
} |