FlightInfo.cs 551 B

12345678910111213141516
  1. namespace TransportMauiApp.Models;
  2. public sealed class FlightInfo
  3. {
  4. public int FlightId { get; set; }
  5. public TimeSpan Duration { get; set; }
  6. public string RouteName { get; set; } = string.Empty;
  7. public string Model { get; set; } = string.Empty;
  8. public string LicensePlateNumber { get; set; } = string.Empty;
  9. public string DriverFio { get; set; } = string.Empty;
  10. public override string ToString()
  11. {
  12. return $"{FlightId}: {RouteName}, {Duration:hh\\:mm\\:ss}, {Model} {LicensePlateNumber}, {DriverFio}";
  13. }
  14. }