mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 09:56:32 +00:00
0625cd4157
Made-with: Cursor
8 lines
146 B
C#
8 lines
146 B
C#
namespace Azaion.Flights.DTOs;
|
|
|
|
public class GetAircraftsQuery
|
|
{
|
|
public string? Name { get; set; }
|
|
public bool? IsDefault { get; set; }
|
|
}
|