Klasst erstellen
This commit is contained in:
21
SkyTeam/User.cs
Normal file
21
SkyTeam/User.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user