mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-15 17:28:26 -05:00
18 lines
400 B
C#
18 lines
400 B
C#
namespace Executable.Models;
|
|
|
|
/// <summary>
|
|
/// Standardized error response model for API endpoints
|
|
/// </summary>
|
|
public class ErrorResponse
|
|
{
|
|
/// <summary>
|
|
/// User-friendly error message
|
|
/// </summary>
|
|
public required string Error { get; set; }
|
|
|
|
/// <summary>
|
|
/// Trace ID for error tracking (GUID)
|
|
/// </summary>
|
|
public required string TraceId { get; set; }
|
|
}
|