Files
I150/srcs/RobotNet10/Shared/RobotNet10.MapEditor.Shared/DTOs/Responses/ErrorResponseDto.cs
2026-07-03 16:37:12 +07:00

26 lines
557 B
C#

namespace RobotNet10.MapEditor.Shared.DTOs.Responses;
/// <summary>
/// Standard error response DTO
/// </summary>
public class ErrorResponseDto
{
/// <summary>
/// Error message
/// </summary>
public string Error { get; set; } = string.Empty;
/// <summary>
/// Error code for programmatic handling
/// </summary>
public string? ErrorCode { get; set; }
/// <summary>
/// Additional error details
/// </summary>
public Dictionary<string, object>? Details { get; set; }
}