14 lines
341 B
C#
14 lines
341 B
C#
namespace RobotNet10.FleetManager.Shared.DTOs.Responses;
|
|
|
|
/// <summary>
|
|
/// Error response DTO for API error responses
|
|
/// </summary>
|
|
public class ErrorResponseDto
|
|
{
|
|
public string Error { get; set; } = string.Empty;
|
|
|
|
public string? ErrorCode { get; set; }
|
|
|
|
public Dictionary<string, object>? Details { get; set; }
|
|
}
|