mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 21:56:32 +00:00
0625cd4157
Made-with: Cursor
9 lines
205 B
C#
9 lines
205 B
C#
namespace Azaion.Flights.DTOs;
|
|
|
|
public class ErrorResponse
|
|
{
|
|
public int StatusCode { get; set; }
|
|
public string Message { get; set; } = string.Empty;
|
|
public List<string>? Errors { get; set; }
|
|
}
|