feat(domain): neue Entität 'ProblemDetail' hinzugefügt

This commit is contained in:
Developer 02 2025-08-12 17:02:03 +02:00
parent c5787c8736
commit 8b248db4e2

View File

@ -0,0 +1,10 @@
namespace Leanetec.EConnect.Domain.Entities;
public class ProblemDetail
{
public string? Type { get; init; }
public string? Title { get; init; }
public int? Status { get; init; }
public string? Detail { get; init; }
public string? Instance { get; init; }
}