Klasst erstellen

This commit is contained in:
2026-01-21 10:55:31 +01:00
parent b11b5a0676
commit cbab7e118c
5 changed files with 105 additions and 0 deletions

20
SkyTeam/Fluge.cs Normal file
View File

@@ -0,0 +1,20 @@
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; }
}
}