mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 21:56:32 +00:00
0625cd4157
Made-with: Cursor
11 lines
272 B
C#
11 lines
272 B
C#
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;
|
|
}
|