mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-30 17:39:03 -05:00
18 lines
404 B
C#
18 lines
404 B
C#
namespace Cleanuparr.Api.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; }
|
|
}
|