All checks were successful
Build and Deploy LSFE / build-and-deploy (push) Successful in 1m43s
15 lines
379 B
C#
15 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LSFE.Application.Common.Models
|
|
{
|
|
public class ErrorResponse
|
|
{
|
|
public int StatusCode { get; set; }
|
|
public string Message { get; set; } = string.Empty;
|
|
public IDictionary<string, string[]>? Errors { get; set; }
|
|
public string? StackTrace { get; set; }
|
|
}
|
|
}
|