| 12345678910111213141516 |
- namespace TransportMauiApp.Models;
- public sealed class FlightInfo
- {
- public int FlightId { get; set; }
- public TimeSpan Duration { get; set; }
- public string RouteName { get; set; } = string.Empty;
- public string Model { get; set; } = string.Empty;
- public string LicensePlateNumber { get; set; } = string.Empty;
- public string DriverFio { get; set; } = string.Empty;
- public override string ToString()
- {
- return $"{FlightId}: {RouteName}, {Duration:hh\\:mm\\:ss}, {Model} {LicensePlateNumber}, {DriverFio}";
- }
- }
|