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

21
SkyTeam/User.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SkyTeam
{
internal class User
{
private int id { get; set; }
private string vorname { get; set; }
private string nachname { get; set; }
private string email { get; set; }
private string passwort { get; set; }
private string stadt { get; set; }
private DateTime geburtsdatum { get; set; }
private string anrede { get; set; }
private DateTime created { get; set; }
}
}