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