-
Notifications
You must be signed in to change notification settings - Fork 1
Models
IOF edited this page Jul 23, 2025
·
1 revision
public sealed class ErrorResponse
{
public ErrorResponse(string statusCode, string? message = "", string? detail = "")
{
StatusCode = statusCode;
Message = message;
Detail = detail;
}
[JsonInclude]
internal string StatusCode { get; set; } = string.Empty;
[JsonInclude]
internal string? Message { get; set; } = string.Empty;
[JsonInclude]
internal string? Detail { get; set; } = string.Empty;
}