namespace RobotNet10.FleetManager.Shared.DTOs.Responses;
///
/// Error response DTO for API error responses
///
public class ErrorResponseDto
{
public string Error { get; set; } = string.Empty;
public string? ErrorCode { get; set; }
public Dictionary? Details { get; set; }
}