Files
Denso/srcs/RobotNet10/FleetManager/RobotNet10.FleetManager.Shared/DTOs/Responses/ErrorResponseDto.cs
2026-07-03 16:31:37 +07:00

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; }
}