mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 12:26:30 +00:00
Initial commit
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Azaion.Flights.DTOs;
|
||||
|
||||
public class GetFlightsQuery
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public DateTime? FromDate { get; set; }
|
||||
public DateTime? ToDate { get; set; }
|
||||
public int Page { get; set; } = 1;
|
||||
public int PageSize { get; set; } = 20;
|
||||
}
|
||||
Reference in New Issue
Block a user