Files
flights/DTOs/GetAircraftsQuery.cs
Oleksandr Bezdieniezhnykh 0625cd4157 Initial commit
Made-with: Cursor
2026-03-25 05:21:08 +02:00

8 lines
146 B
C#

namespace Azaion.Flights.DTOs;
public class GetAircraftsQuery
{
public string? Name { get; set; }
public bool? IsDefault { get; set; }
}