Files
FlyTeam/SkyTeam/Fluge.cs
2026-01-21 10:55:31 +01:00

21 lines
551 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SkyTeam
{
internal class Fluge
{
private int id { get; set; }
private string abflugort { get; set; }
private string zielort { get; set; }
private DateTime abflugdatum { get; set; }
private DateTime ankunftsdatum { get; set; }
private string flugnummer { get; set; }
private decimal preis { get; set; }
private DateTime created { get; set; }
}
}