mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 21:56:32 +00:00
0625cd4157
Made-with: Cursor
9 lines
210 B
C#
9 lines
210 B
C#
namespace Azaion.Flights.DTOs;
|
|
|
|
public class CreateFlightRequest
|
|
{
|
|
public Guid AircraftId { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public DateTime? CreatedDate { get; set; }
|
|
}
|