namespace Azaion.Flights.DTOs; public class CreateFlightRequest { public Guid AircraftId { get; set; } public string Name { get; set; } = string.Empty; public DateTime? CreatedDate { get; set; } }