mirror of
https://github.com/azaion/missions.git
synced 2026-06-21 09:21:07 +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;
|
|
}
|