mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 21:46:30 +00:00
0625cd4157
Made-with: Cursor
8 lines
149 B
C#
8 lines
149 B
C#
namespace Azaion.Flights.DTOs;
|
|
|
|
public class UpdateFlightRequest
|
|
{
|
|
public string? Name { get; set; }
|
|
public Guid? AircraftId { get; set; }
|
|
}
|