namespace Moonlight.Api.Http.Services.ContainerHelper; public class ProblemDetails { public string Type { get; set; } public string Title { get; set; } public int Status { get; set; } public string? Detail { get; set; } public Dictionary? Errors { get; set; } }