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? Errors { get; set; } public string? StackTrace { get; set; } } }