Files
Moonlight/Moonlight.Api/Admin/Sys/ContainerHelper/Models/ProblemDetails.cs

10 lines
306 B
C#

namespace Moonlight.Api.Admin.Sys.ContainerHelper.Models;
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<string, string[]>? Errors { get; set; }
}